From cf96eae039d1f41629a51958b32b8d932ba832b4 Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Sun, 16 Apr 2023 23:04:33 +0200 Subject: [PATCH] [vesync] Fix modifier order (#14831) These modifiers are out of order with the JLS suggestions. Signed-off-by: Wouter Born --- .../vesync/internal/handlers/VeSyncDeviceMetadata.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/org.openhab.binding.vesync/src/main/java/org/openhab/binding/vesync/internal/handlers/VeSyncDeviceMetadata.java b/bundles/org.openhab.binding.vesync/src/main/java/org/openhab/binding/vesync/internal/handlers/VeSyncDeviceMetadata.java index 8c27ac0270..8d211e75ab 100644 --- a/bundles/org.openhab.binding.vesync/src/main/java/org/openhab/binding/vesync/internal/handlers/VeSyncDeviceMetadata.java +++ b/bundles/org.openhab.binding.vesync/src/main/java/org/openhab/binding/vesync/internal/handlers/VeSyncDeviceMetadata.java @@ -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 deviceGenerations; + public final List deviceGenerations; /** * Device Types not following the standard 3 segment convention */ - final public List nonStandardIds; + public final List nonStandardIds; public boolean deviceTypeIdMatches(final String deviceType, final String[] deviceTypeSegments) { if (nonStandardIds.contains(deviceType)) { -- 2.47.3