Skip to content

Commit

Permalink
Merge pull request #30 from gaelTorrecillas/patch-1
Browse files Browse the repository at this point in the history
Update Row.java
  • Loading branch information
flotho authored Jun 6, 2024
2 parents cbd1b14 + 8c20603 commit 1056f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/odoojava/api/Row.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public int getID(){
*/
public String getString(String fieldName){
String res=null;
if ( get(fieldName).toString()!= null){
if ( get(fieldName)!= null){
res = get(fieldName).toString();
}
return res;
Expand Down

0 comments on commit 1056f79

Please sign in to comment.