You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/05/19 09:17:57 UTC

[2/4] wicket git commit: WICKET-5904 NPE after editing a markup file in debug mode

WICKET-5904 NPE after editing a markup file in debug mode


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/b6563518
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/b6563518
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/b6563518

Branch: refs/heads/master
Commit: b65635188d73e3e46d4523b7643fa4ddcc509ca0
Parents: f3914dd
Author: Andrea Del Bene <ad...@apache.org>
Authored: Sat May 16 17:14:45 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue May 19 10:14:46 2015 +0300

----------------------------------------------------------------------
 .../org/apache/wicket/markup/parser/AbstractMarkupFilter.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/b6563518/wicket-core/src/main/java/org/apache/wicket/markup/parser/AbstractMarkupFilter.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/parser/AbstractMarkupFilter.java b/wicket-core/src/main/java/org/apache/wicket/markup/parser/AbstractMarkupFilter.java
index 9969c4b..db53a77 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/parser/AbstractMarkupFilter.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/parser/AbstractMarkupFilter.java
@@ -43,13 +43,13 @@ public abstract class AbstractMarkupFilter implements IMarkupFilter
 
 	/** The next MarkupFilter in the chain */
 	private IMarkupFilter parent;
-	
+
 	/** A key for a request-relative counter (see {@link #getRequestUniqueId()}) **/
 	private final static MetaDataKey<AtomicInteger> REQUEST_COUNTER_KEY = new MetaDataKey<AtomicInteger>()
 	{
 		private static final long serialVersionUID = 1L;
 	};
-		
+
 	/**
 	 * Construct.
 	 */
@@ -194,7 +194,7 @@ public abstract class AbstractMarkupFilter implements IMarkupFilter
 		}
 		return wicketNamespace;
 	}
-	
+
 	/**
 	 * Returns an id using a request-relative counter. This can be
 	 * useful for autocomponent tags that need to get a tag id.