From: rama-huawei Date: Thu, 28 Sep 2017 10:26:00 +0000 (+0530) Subject: Added the "@Override" annotation X-Git-Tag: v1.1.0~7^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fdata-router.git;a=commitdiff_plain;h=71088aaf4cf7d8d7182bd0cfe9943781e1538d44 Added the "@Override" annotation Issue-id: CIMAN-65 Change-Id: I5893ee1af1a0b5db6ec5162acb91456f4c28c734 Signed-off-by: rama-huawei --- diff --git a/src/main/java/org/openecomp/datarouter/util/CrossEntityReference.java b/src/main/java/org/openecomp/datarouter/util/CrossEntityReference.java index f55d2e7..e889656 100644 --- a/src/main/java/org/openecomp/datarouter/util/CrossEntityReference.java +++ b/src/main/java/org/openecomp/datarouter/util/CrossEntityReference.java @@ -38,7 +38,7 @@ public class CrossEntityReference { public CrossEntityReference() { this.targetEntityType = null; - this.attributeNames = new ArrayList(); + this.attributeNames = new ArrayList<>(); } public String getTargetEntityType() { diff --git a/src/main/java/org/openecomp/datarouter/util/EntityOxmReferenceHelper.java b/src/main/java/org/openecomp/datarouter/util/EntityOxmReferenceHelper.java index 503a069..cd5a37d 100644 --- a/src/main/java/org/openecomp/datarouter/util/EntityOxmReferenceHelper.java +++ b/src/main/java/org/openecomp/datarouter/util/EntityOxmReferenceHelper.java @@ -33,7 +33,7 @@ public class EntityOxmReferenceHelper implements ExternalOxmModelProcessor { private HashMap versionedModels; protected EntityOxmReferenceHelper() { - this.versionedModels = new HashMap(); + this.versionedModels = new HashMap<>(); } public static EntityOxmReferenceHelper getInstance() { @@ -57,4 +57,4 @@ public class EntityOxmReferenceHelper implements ExternalOxmModelProcessor { return this.versionedModels.get(version); } -} \ No newline at end of file +} diff --git a/src/main/java/org/openecomp/datarouter/util/FileWatcher.java b/src/main/java/org/openecomp/datarouter/util/FileWatcher.java index 5b04310..8ae69d3 100644 --- a/src/main/java/org/openecomp/datarouter/util/FileWatcher.java +++ b/src/main/java/org/openecomp/datarouter/util/FileWatcher.java @@ -34,14 +34,15 @@ public abstract class FileWatcher extends TimerTask { this.timeStamp = file.lastModified(); } + @Override public final void run() { - long timeStamp = file.lastModified(); + long newTimeStamp = file.lastModified(); - if ((timeStamp - this.timeStamp) > 500) { - this.timeStamp = timeStamp; + if ((newTimeStamp - this.timeStamp) > 500) { + this.timeStamp = newTimeStamp; onChange(file); } } protected abstract void onChange(File file); -} \ No newline at end of file +}