Skip to content

Commit

Permalink
check for null string in Record.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemartinez committed Jul 7, 2016
1 parent 64103b8 commit da51050
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -932,7 +932,10 @@ public String[] getServicesInstancesPaths() {
}

public String getServicesRecordPath(String name) {
return services_record_paths.get(name).trim();
if (services_record_paths.get(name) != null){
return services_record_paths.get(name).trim();
}
return null;
}

public String getServicesSchemaName(String sectionName) {
Expand Down

0 comments on commit da51050

Please sign in to comment.