Skip to content

Commit

Permalink
SAMZA-1423; Follow-up to PR:303 - Remove version constant from TimeSe…
Browse files Browse the repository at this point in the history
…riesKey
  • Loading branch information
jagadish-v0 committed Oct 2, 2017
1 parent 56d564c commit 92894e5
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -24,8 +24,6 @@
*/
public class TimeSeriesKey<K> {

// version for backwards compatibility
private static final byte VERSION = 0x00;
private final K key;
private final long timestamp;

Expand All @@ -45,10 +43,6 @@ public long getTimestamp() {
return timestamp;
}

public byte getVersion() {
return VERSION;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down

0 comments on commit 92894e5

Please sign in to comment.