From e60315b0ea7b5fe78ed1161f12bbeddf891eddee Mon Sep 17 00:00:00 2001 From: Automation51D <51DCI@51Degrees.com> Date: Mon, 20 Jul 2026 11:42:09 +0000 Subject: [PATCH] Update properties --- .../fiftyone/ipintelligence/shared/IPIntelligenceData.java | 4 ++-- .../ipintelligence/shared/IPIntelligenceDataBase.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java index d0c667e9..462e92ee 100644 --- a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java +++ b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java @@ -63,7 +63,7 @@ public interface IPIntelligenceData extends AspectData */ AspectPropertyValue getConnectionType(); /** - * The 3-character ISO 3166-1 continent code for the supplied location. + * The 2-character ISO 3166-1 continent code for the supplied location. */ AspectPropertyValue getContinentCode2(); /** @@ -227,7 +227,7 @@ public interface IPIntelligenceData extends AspectData */ AspectPropertyValue getTimeZoneIana(); /** - * The offset from UTC in minutes in the supplied location, at the time that the value is produced. + * The offset from UTC in minutes in the supplied location, at the time that the value is produced. A value of -1 indicates unknown. */ AspectPropertyValue getTimeZoneOffset(); /** diff --git a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java index 14e93462..95ae9592 100644 --- a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java +++ b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java @@ -93,7 +93,7 @@ protected IPIntelligenceDataBase( @Override public AspectPropertyValue getConnectionType() { return getAs("connectiontype", AspectPropertyValue.class, String.class); } /** - * The 3-character ISO 3166-1 continent code for the supplied location. + * The 2-character ISO 3166-1 continent code for the supplied location. */ @SuppressWarnings("unchecked") @Override @@ -339,7 +339,7 @@ protected IPIntelligenceDataBase( @Override public AspectPropertyValue getTimeZoneIana() { return getAs("timezoneiana", AspectPropertyValue.class, String.class); } /** - * The offset from UTC in minutes in the supplied location, at the time that the value is produced. + * The offset from UTC in minutes in the supplied location, at the time that the value is produced. A value of -1 indicates unknown. */ @SuppressWarnings("unchecked") @Override