Conditions | 4 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* |
||
36 | private String getDataFromRegistry(String[] exploded, AlbumInterface item) |
||
37 | { |
||
38 | StringBuilder output = new StringBuilder(); |
||
39 | |||
40 | for (String value : exploded) { |
||
41 | if (value.equals("album")) output.append(item.getName()).append(" "); |
||
42 | if (value.equals("author")) output.append(item.getAuthor()).append(" "); |
||
43 | } |
||
44 | |||
45 | return output.toString(); |
||
46 | } |
||
48 |