You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by fr...@apache.org on 2007/03/08 09:49:18 UTC

svn commit: r515971 - in /incubator/wicket/branches/wicket-1.x/wicket: ./ src/main/java/wicket/settings/IExceptionSettings.java src/main/java/wicket/util/lang/EnumeratedType.java

Author: frankbille
Date: Thu Mar  8 00:49:17 2007
New Revision: 515971

URL: http://svn.apache.org/viewvc?view=rev&rev=515971
Log:
Removed deprecated tags from code which isn't deprecated yet.

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/   (props changed)
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/settings/IExceptionSettings.java
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/util/lang/EnumeratedType.java

Propchange: incubator/wicket/branches/wicket-1.x/wicket/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Mar  8 00:49:17 2007
@@ -1,12 +1,13 @@
-.classpath
-.project
-build
-target
-*.log
-build.properties
-*.backup
-*.temp
-RECYCLER
-.clover
-.amateras
-sessions
+.classpath
+.project
+build
+target
+*.log
+build.properties
+*.backup
+*.temp
+RECYCLER
+.clover
+.amateras
+sessions
+bin

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/settings/IExceptionSettings.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/settings/IExceptionSettings.java?view=diff&rev=515971&r1=515970&r2=515971
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/settings/IExceptionSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/settings/IExceptionSettings.java Thu Mar  8 00:49:17 2007
@@ -31,15 +31,11 @@
  * mark characters (e.g. "??missingKey??")
  * 
  * @author Igor Vaynberg (ivaynberg)
- * 
- * @deprecated will be removed in 2.0. See methods for details
  */
 public interface IExceptionSettings
 {
 	/**
 	 * Enumerated type for different ways of displaying unexpected exceptions.
-	 * 
-	 * @deprecated will be moved to {@link IApplicationSettings} in 2.0
 	 */
 	public static final class UnexpectedExceptionDisplay extends EnumeratedType
 	{
@@ -82,7 +78,6 @@
 
 	/**
 	 * @return Returns the unexpectedExceptionDisplay.
-	 * @deprecated will be moved to {@link IApplicationSettings} in 2.0
 	 */
 	UnexpectedExceptionDisplay getUnexpectedExceptionDisplay();
 
@@ -117,8 +112,6 @@
 	 * 
 	 * @param unexpectedExceptionDisplay
 	 *            The unexpectedExceptionDisplay to set.
-	 * 
-	 * @deprecated will be moved to {@link IApplicationSettings} in 2.0
 	 */
 	void setUnexpectedExceptionDisplay(UnexpectedExceptionDisplay unexpectedExceptionDisplay);
 }

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/util/lang/EnumeratedType.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/util/lang/EnumeratedType.java?view=diff&rev=515971&r1=515970&r2=515971
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/util/lang/EnumeratedType.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/util/lang/EnumeratedType.java Thu Mar  8 00:49:17 2007
@@ -32,8 +32,6 @@
  * represented by a given subclass can be retrieved by calling getValues(Class).
  * 
  * @author Jonathan Locke
- * 
- * @deprecated To be replaced by JSE 5 constructs in Wicket 2.0
  */
 public abstract class EnumeratedType extends StringValue
 {