This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git


The following commit(s) were added to refs/heads/master by this push:
     new d6d9d602 Remove redundant interface
d6d9d602 is described below

commit d6d9d602b18c95c846c90c3cebdd133e931b1c82
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Aug 18 14:16:47 2023 -0400

    Remove redundant interface
---
 .../jcs3/auxiliary/remote/server/behavior/IRemoteCacheServer.java     | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/remote/server/behavior/IRemoteCacheServer.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/remote/server/behavior/IRemoteCacheServer.java
index 58c81d0e..33c6636c 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/remote/server/behavior/IRemoteCacheServer.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/remote/server/behavior/IRemoteCacheServer.java
@@ -19,8 +19,6 @@
 
 package org.apache.commons.jcs3.auxiliary.remote.server.behavior;
 
-import java.rmi.Remote;
-
 import org.apache.commons.jcs3.engine.behavior.ICacheObserver;
 import org.apache.commons.jcs3.engine.behavior.ICacheServiceAdmin;
 import org.apache.commons.jcs3.engine.behavior.ICacheServiceNonLocal;
@@ -29,7 +27,7 @@ import 
org.apache.commons.jcs3.engine.behavior.ICacheServiceNonLocal;
  * Interface for managing Remote objects
  */
 public interface IRemoteCacheServer<K, V>
-    extends ICacheServiceNonLocal<K, V>, ICacheObserver, ICacheServiceAdmin, 
Remote
+    extends ICacheServiceNonLocal<K, V>, ICacheObserver, ICacheServiceAdmin
 {
     // empty
 }

Reply via email to