You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/12/20 18:37:27 UTC

svn commit: r1552756 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java

Author: ggregory
Date: Fri Dec 20 17:37:26 2013
New Revision: 1552756

URL: http://svn.apache.org/r1552756
Log:
Add missing '@Deprecated' annotations.

Modified:
    commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java

Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java?rev=1552756&r1=1552755&r2=1552756&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java (original)
+++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.java Fri Dec 20 17:37:26 2013
@@ -305,6 +305,7 @@ public class SevenZArchiveEntry implemen
      * Gets the CRC.
      * @deprecated use getCrcValue instead.
      */
+    @Deprecated
     public int getCrc() {
         return (int) crc;
     }
@@ -313,6 +314,7 @@ public class SevenZArchiveEntry implemen
      * Sets the CRC.
      * @deprecated use setCrcValue instead.
      */
+    @Deprecated
     public void setCrc(int crc) {
         this.crc = crc;
     }
@@ -337,6 +339,7 @@ public class SevenZArchiveEntry implemen
      * Gets the compressed CRC.
      * @deprecated use getCompressedCrcValue instead.
      */
+    @Deprecated
     int getCompressedCrc() {
         return (int) compressedCrc;
     }
@@ -345,6 +348,7 @@ public class SevenZArchiveEntry implemen
      * Sets the compressed CRC.
      * @deprecated use setCompressedCrcValue instead.
      */
+    @Deprecated
     void setCompressedCrc(int crc) {
         this.compressedCrc = crc;
     }