Skip to content

Commit

Permalink
fix: A compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Apr 5, 2024
1 parent 2556c12 commit 27700c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static PlcCHAR of(Object value) {
} else if (value instanceof BigDecimal) {
return new PlcCHAR((BigDecimal) value);
} else if(value instanceof Character){
return new PlcCHAR((Character) value)
return new PlcCHAR((Character) value);
}else {
return new PlcCHAR((String) value);
}
Expand Down

0 comments on commit 27700c2

Please sign in to comment.