You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2014/10/12 22:36:37 UTC

git commit: Ensure that deprecated methods are fully annotated

Repository: jclouds
Updated Branches:
  refs/heads/master 6b83679ca -> 8cd2b92a0


Ensure that deprecated methods are fully annotated

Found with Google error-prone.


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/8cd2b92a
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/8cd2b92a
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/8cd2b92a

Branch: refs/heads/master
Commit: 8cd2b92a0eb7bfe18fb165483b8e21153d0068f1
Parents: 6b83679
Author: Andrew Gaul <ga...@apache.org>
Authored: Sun Oct 12 13:33:42 2014 -0700
Committer: Andrew Gaul <ga...@apache.org>
Committed: Sun Oct 12 13:34:08 2014 -0700

----------------------------------------------------------------------
 .../java/org/jclouds/openstack/swift/v1/domain/SwiftObject.java     | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/8cd2b92a/apis/openstack-swift/src/main/java/org/jclouds/openstack/swift/v1/domain/SwiftObject.java
----------------------------------------------------------------------
diff --git a/apis/openstack-swift/src/main/java/org/jclouds/openstack/swift/v1/domain/SwiftObject.java b/apis/openstack-swift/src/main/java/org/jclouds/openstack/swift/v1/domain/SwiftObject.java
index 2184ff2..7f638e8 100644
--- a/apis/openstack-swift/src/main/java/org/jclouds/openstack/swift/v1/domain/SwiftObject.java
+++ b/apis/openstack-swift/src/main/java/org/jclouds/openstack/swift/v1/domain/SwiftObject.java
@@ -78,6 +78,7 @@ public class SwiftObject implements Comparable<SwiftObject> {
     * @return The ETag of the content of this object.
     * @deprecated Please use {@link #getETag()} as this method will be removed in jclouds 1.8.
     */
+   @Deprecated
    public String getEtag() {
       return etag;
    }