Skip to content
Snippets Groups Projects
Commit b7e046de authored by mbrodhu's avatar mbrodhu
Browse files

ListIdentifier Logs

parent aea42502
No related branches found
No related tags found
No related merge requests found
......@@ -91,10 +91,9 @@ public class DublinCoreFieldLoader {
public static List<String> setCoverage(GetResponse responseWorkValues, String[] values) {
for (String field : values) {
System.out.println("fieldname: "+ field);
if (responseWorkValues.getField(field) != null) {
System.out.println("value of coverage" + responseWorkValues.getField(field).getValue().toString());
coverages.add(responseWorkValues.getField(field).getValue().toString());
System.out.println("fieldname: " + field);
if (field!= null && responseWorkValues.getField(field) != null) {
coverages.add(responseWorkValues.getField(field).getValue().toString());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment