You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by nd...@apache.org on 2009/02/01 05:14:43 UTC

svn commit: r739696 - /harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/net/MulticastSocket.java

Author: ndbeyer
Date: Sun Feb  1 04:14:43 2009
New Revision: 739696

URL: http://svn.apache.org/viewvc?rev=739696&view=rev
Log:
remove unnecessary annotations

Modified:
    harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/net/MulticastSocket.java

Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/net/MulticastSocket.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/net/MulticastSocket.java?rev=739696&r1=739695&r2=739696&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/net/MulticastSocket.java (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/main/java/java/net/MulticastSocket.java Sun Feb  1 04:14:43 2009
@@ -176,7 +176,6 @@
      * @deprecated Replaced by getTimeToLive
      * @see #getTimeToLive()
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     public byte getTTL() throws IOException {
         checkClosedAndBind(false);
@@ -345,7 +344,6 @@
      * 
      * @deprecated use MulticastSocket#setTimeToLive
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     public void send(DatagramPacket pack, byte ttl) throws IOException {
         checkClosedAndBind(false);
@@ -540,7 +538,6 @@
      * @deprecated Replaced by setTimeToLive
      * @see #setTimeToLive(int)
      */
-    @SuppressWarnings("deprecation")
     @Deprecated
     public void setTTL(byte ttl) throws IOException {
         checkClosedAndBind(false);