You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by gk...@apache.org on 2013/04/09 08:28:17 UTC

svn commit: r1465901 - /turbine/core/trunk/src/java/org/apache/turbine/services/schedule/JobEntryInterface.java

Author: gk
Date: Tue Apr  9 06:28:16 2013
New Revision: 1465901

URL: http://svn.apache.org/r1465901
Log:
fix for jre 1.7 same erasure type name clash error

Modified:
    turbine/core/trunk/src/java/org/apache/turbine/services/schedule/JobEntryInterface.java

Modified: turbine/core/trunk/src/java/org/apache/turbine/services/schedule/JobEntryInterface.java
URL: http://svn.apache.org/viewvc/turbine/core/trunk/src/java/org/apache/turbine/services/schedule/JobEntryInterface.java?rev=1465901&r1=1465900&r2=1465901&view=diff
==============================================================================
--- turbine/core/trunk/src/java/org/apache/turbine/services/schedule/JobEntryInterface.java (original)
+++ turbine/core/trunk/src/java/org/apache/turbine/services/schedule/JobEntryInterface.java Tue Apr  9 06:28:16 2013
@@ -45,7 +45,7 @@ public interface JobEntryInterface exten
 	 * @param je The first <code>JobEntry</code> object.
 	 * @return An <code>int</code> indicating the result of the comparison.
 	 */
-    public int compareTo(Object je);
+    public int compareTo(JobEntry je);
 
     /**
 	 * Sets whether the job is running.