You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by pe...@apache.org on 2010/11/29 17:39:37 UTC

svn commit: r1040179 - in /wicket/trunk: wicket-util/src/main/java/org/apache/wicket/util/thread/Task.java wicket/src/main/java/org/apache/wicket/markup/ComponentTag.java wicket/src/main/java/org/apache/wicket/protocol/http/BufferedWebResponse.java

Author: pete
Date: Mon Nov 29 16:39:37 2010
New Revision: 1040179

URL: http://svn.apache.org/viewvc?rev=1040179&view=rev
Log:
serialization: remove [transient] keyword from classes not being serializable

Modified:
    wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/thread/Task.java
    wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/ComponentTag.java
    wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/BufferedWebResponse.java

Modified: wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/thread/Task.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/thread/Task.java?rev=1040179&r1=1040178&r2=1040179&view=diff
==============================================================================
--- wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/thread/Task.java (original)
+++ wicket/trunk/wicket-util/src/main/java/org/apache/wicket/util/thread/Task.java Mon Nov 29 16:39:37 2010
@@ -48,7 +48,7 @@ public final class Task
 	private boolean isStarted = false;
 
 	/** the <code>log</code> to give to the user's code */
-	private transient Logger log = null;
+	private Logger log = null;
 
 	/** the name of this <code>Task</code> */
 	private final String name;

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/ComponentTag.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/ComponentTag.java?rev=1040179&r1=1040178&r2=1040179&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/ComponentTag.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/markup/ComponentTag.java Mon Nov 29 16:39:37 2010
@@ -71,12 +71,12 @@ public class ComponentTag extends Markup
 	private String id;
 
 	/** True, if attributes have been modified or added */
-	private transient boolean modified = false;
+	private boolean modified = false;
 
 	/**
 	 * If true, than the MarkupParser will ignore (remove) it. Temporary working variable
 	 */
-	private transient boolean ignore = false;
+	private boolean ignore = false;
 
 	/** If true, than the tag contain an automatically created wicket id */
 	private boolean autoComponent = false;

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/BufferedWebResponse.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/BufferedWebResponse.java?rev=1040179&r1=1040178&r2=1040179&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/BufferedWebResponse.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/BufferedWebResponse.java Mon Nov 29 16:39:37 2010
@@ -38,7 +38,7 @@ import org.apache.wicket.util.lang.Args;
  */
 public class BufferedWebResponse extends WebResponse implements IMetaDataBufferingWebResponse
 {
-	private final transient WebResponse originalResponse;
+	private final WebResponse originalResponse;
 
 	/**
 	 * Construct.