]> git.basschouten.com Git - openhab-addons.git/commitdiff
[vesync] Fix modifier order (#14831)
authorWouter Born <github@maindrain.net>
Sun, 16 Apr 2023 21:04:33 +0000 (23:04 +0200)
committerGitHub <noreply@github.com>
Sun, 16 Apr 2023 21:04:33 +0000 (23:04 +0200)
These modifiers are out of order with the JLS suggestions.

Signed-off-by: Wouter Born <github@maindrain.net>
bundles/org.openhab.binding.vesync/src/main/java/org/openhab/binding/vesync/internal/handlers/VeSyncDeviceMetadata.java

index 8c27ac02706a4b8b565efb7a57288e03092c7bd4..8d211e75ab3f687055828f73bb7d7abae36929c7 100644 (file)
@@ -38,17 +38,17 @@ public class VeSyncDeviceMetadata {
      * The name of the family the set of ID's represents.
      *
      */
-    final public String deviceFamilyName;
+    public final String deviceFamilyName;
 
     /**
      * The version id, that represents the specific model of the device
      */
-    final public List<String> deviceGenerations;
+    public final List<String> deviceGenerations;
 
     /**
      * Device Types not following the standard 3 segment convention
      */
-    final public List<String> nonStandardIds;
+    public final List<String> nonStandardIds;
 
     public boolean deviceTypeIdMatches(final String deviceType, final String[] deviceTypeSegments) {
         if (nonStandardIds.contains(deviceType)) {