diff options
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/Ice/src/main/java/Ice/Object.java | 4 | ||||
-rw-r--r-- | java/src/Ice/src/main/java/Ice/ObjectImpl.java | 4 | ||||
-rw-r--r-- | java/src/Ice/src/main/java/IceUtil/Cache.java | 1 |
3 files changed, 2 insertions, 7 deletions
diff --git a/java/src/Ice/src/main/java/Ice/Object.java b/java/src/Ice/src/main/java/Ice/Object.java index 997c44bbe49..865c2a370c5 100644 --- a/java/src/Ice/src/main/java/Ice/Object.java +++ b/java/src/Ice/src/main/java/Ice/Object.java @@ -96,7 +96,7 @@ public interface Object * The expression <code>ice_operationAttributes("op") & 0x1</code> is true if * the operation has a <code>["freeze:write"]</code> metadata directive. * <p> - * The second- and third least significant bit indicate the transactional mode + * The second and third least significant bit indicate the transactional mode * of the operation. The expression <code>ice_operationAttributes("op") & 0x6 >> 1</code> * indicates the transactional mode as follows: * <dl> @@ -109,8 +109,6 @@ public interface Object * <dt>3</dt> * <dd><code>["freeze:read:never"]</code></dd> * </dl> - * - * @see Freeze.TransactionalEvictor **/ int ice_operationAttributes(String operation); diff --git a/java/src/Ice/src/main/java/Ice/ObjectImpl.java b/java/src/Ice/src/main/java/Ice/ObjectImpl.java index d550dc14483..582d8fe7a01 100644 --- a/java/src/Ice/src/main/java/Ice/ObjectImpl.java +++ b/java/src/Ice/src/main/java/Ice/ObjectImpl.java @@ -215,7 +215,7 @@ public abstract class ObjectImpl implements Object, java.lang.Cloneable, java.io * The expression <code>ice_operationAttributes("op") & 0x1</code> is true if * the operation has a <code>["freeze:write"]</code> metadata directive. * <p> - * The second- and third least significant bit indicate the transactional mode + * The second and third least significant bit indicate the transactional mode * of the operation. The expression <code>ice_operationAttributes("op") & 0x6 >> 1</code> * indicates the transactional mode as follows: * <dl> @@ -228,8 +228,6 @@ public abstract class ObjectImpl implements Object, java.lang.Cloneable, java.io * <dt>3</dt> * <dd><code>["freeze:read:never"]</code></dd> * </dl> - * - * @see Freeze.TransactionalEvictor **/ @Override public int ice_operationAttributes(String operation) diff --git a/java/src/Ice/src/main/java/IceUtil/Cache.java b/java/src/Ice/src/main/java/IceUtil/Cache.java index 975a76b55dd..5914d772239 100644 --- a/java/src/Ice/src/main/java/IceUtil/Cache.java +++ b/java/src/Ice/src/main/java/IceUtil/Cache.java @@ -16,7 +16,6 @@ package IceUtil; * evictors, such as used by Freeze. * * @see Store - * @see Freeze.Evictor **/ public class Cache |