summaryrefslogtreecommitdiffstats
path: root/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java
diff options
context:
space:
mode:
Diffstat (limited to 'persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java')
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java b/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java
deleted file mode 100644
index 00639601c4d..00000000000
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.persistence.rpc;
-
-/**
- * Represents a JRT persistence provider method that includes a timestamp in its request
- */
-public class TimestampedProviderMethod extends BucketProviderMethod {
- public TimestampedProviderMethod(String name, PersistenceProviderHandler owner) {
- this(name, owner, "", "");
- }
-
- public TimestampedProviderMethod(String name, PersistenceProviderHandler owner, String paramTypes) {
- this(name, owner, paramTypes, "");
- }
-
- public TimestampedProviderMethod(String name, PersistenceProviderHandler owner, String paramTypes, String returnTypes) {
- super(name, owner, "l" + paramTypes, returnTypes);
- paramDesc("timestamp", "The timestamp of the operation");
- }
-}