You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ga...@apache.org on 2008/01/05 01:23:22 UTC

svn commit: r609065 - /incubator/pig/trunk/src/org/apache/pig/impl/util/SpillableMemoryManager.java

Author: gates
Date: Fri Jan  4 16:23:21 2008
New Revision: 609065

URL: http://svn.apache.org/viewvc?rev=609065&view=rev
Log:
Removed @override on a function that was an implementation of an interface
function.  The linux jvm was fine with it, but mac's wasn't.


Modified:
    incubator/pig/trunk/src/org/apache/pig/impl/util/SpillableMemoryManager.java

Modified: incubator/pig/trunk/src/org/apache/pig/impl/util/SpillableMemoryManager.java
URL: http://svn.apache.org/viewvc/incubator/pig/trunk/src/org/apache/pig/impl/util/SpillableMemoryManager.java?rev=609065&r1=609064&r2=609065&view=diff
==============================================================================
--- incubator/pig/trunk/src/org/apache/pig/impl/util/SpillableMemoryManager.java (original)
+++ incubator/pig/trunk/src/org/apache/pig/impl/util/SpillableMemoryManager.java Fri Jan  4 16:23:21 2008
@@ -85,7 +85,6 @@
                  * We don't lock anything, so this sort may not be stable if a WeakReference suddenly
                  * becomes null, but it will be close enough.
                  */    
-                @Override
                 public int compare(WeakReference<Spillable> o1Ref, WeakReference<Spillable> o2Ref) {
                     Spillable o1 = o1Ref.get();
                     Spillable o2 = o2Ref.get();