Skip to content

Commit

Permalink
chore: Minor code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Nov 16, 2024
1 parent eb84f9b commit a4b8048
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ public class FetchSDM630 extends AbstractProcessor {
.Builder().name("ENCODING")
.displayName("Encoding")
.required(true)
.defaultValue(""+SERIAL_ENCODING_RTU)
.defaultValue(SERIAL_ENCODING_RTU)
.allowableValues(
new AllowableValue(""+SERIAL_ENCODING_ASCII, "ASCII Encoding"),
new AllowableValue(""+SERIAL_ENCODING_RTU, "RTU Encoding")
new AllowableValue(SERIAL_ENCODING_ASCII, "ASCII Encoding"),
new AllowableValue(SERIAL_ENCODING_RTU, "RTU Encoding")
)
.build();

Expand Down

0 comments on commit a4b8048

Please sign in to comment.