Skip to content

Commit 1056f79

Browse files
authored
Merge pull request #30 from gaelTorrecillas/patch-1
Update Row.java
2 parents cbd1b14 + 8c20603 commit 1056f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/odoojava/api/Row.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public int getID(){
7474
*/
7575
public String getString(String fieldName){
7676
String res=null;
77-
if ( get(fieldName).toString()!= null){
77+
if ( get(fieldName)!= null){
7878
res = get(fieldName).toString();
7979
}
8080
return res;

0 commit comments

Comments
 (0)