You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2016/05/11 21:51:37 UTC

[2/2] incubator-geode git commit: removed unused constructors

removed unused constructors


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/0b8bf230
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/0b8bf230
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/0b8bf230

Branch: refs/heads/feature/GEODE-1252
Commit: 0b8bf230cdd00f018cf309997bc70e9b890045b4
Parents: dfe408a
Author: Darrel Schneider <ds...@pivotal.io>
Authored: Wed May 11 14:47:40 2016 -0700
Committer: Darrel Schneider <ds...@pivotal.io>
Committed: Wed May 11 14:47:40 2016 -0700

----------------------------------------------------------------------
 .../gemfire/internal/cache/versions/VersionTag.java  | 15 ---------------
 1 file changed, 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/0b8bf230/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/versions/VersionTag.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/versions/VersionTag.java b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/versions/VersionTag.java
index b51e731..7910996 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/versions/VersionTag.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/versions/VersionTag.java
@@ -334,21 +334,6 @@ public abstract class VersionTag<T extends VersionSource> implements DataSeriali
     return !(this.entryVersion == 0 && this.regionVersionHighBytes == 0 && this.regionVersionLowBytes == 0);
   }
 
-  public VersionTag() {
-  }
-
-  /**
-   * creates a version tag for a WAN gateway event
-   *
-   * @param timestamp
-   * @param dsid
-   */
-  public VersionTag(long timestamp, int dsid) {
-    this.timeStamp = timestamp;
-    this.distributedSystemId = (byte) (dsid & 0xFF);
-    bitsUpdater.set(this, BITS_GATEWAY_TAG + BITS_IS_REMOTE_TAG);
-  }
-
   public void toData(DataOutput out) throws IOException {
     toData(out, true);
   }