You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2013/04/01 18:04:55 UTC

git commit: remove incorrect nullable annot

Updated Branches:
  refs/heads/master 82f71abde -> ecb474f65


remove incorrect nullable annot


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

Branch: refs/heads/master
Commit: ecb474f6527c857048a227468ad34845b2e14a82
Parents: 82f71ab
Author: Igor Vaynberg <ig...@gmail.com>
Authored: Mon Apr 1 09:04:50 2013 -0700
Committer: Igor Vaynberg <ig...@gmail.com>
Committed: Mon Apr 1 09:04:50 2013 -0700

----------------------------------------------------------------------
 .../wicket/ajax/json/JSONSequenceStringer.java     |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/ecb474f6/wicket-core/src/main/java/org/apache/wicket/ajax/json/JSONSequenceStringer.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/json/JSONSequenceStringer.java b/wicket-core/src/main/java/org/apache/wicket/ajax/json/JSONSequenceStringer.java
index ffe7d15..1e0b8df 100644
--- a/wicket-core/src/main/java/org/apache/wicket/ajax/json/JSONSequenceStringer.java
+++ b/wicket-core/src/main/java/org/apache/wicket/ajax/json/JSONSequenceStringer.java
@@ -20,8 +20,6 @@ import java.io.IOException;
 
 import org.apache.wicket.util.io.StringBufferWriter;
 
-import com.sun.istack.internal.Nullable;
-
 /**
  * An efficient implementation of a JSON stringer. The efficiency comes from the fact that istead of
  * a {@link String} this class can return a {@link CharSequence}. This is better for downstream
@@ -40,7 +38,6 @@ public class JSONSequenceStringer extends JSONWriter
 	/**
 	 * @return JSON text as a {@link CharSequence}
 	 */
-	@Nullable
 	public CharSequence toCharSequence()
 	{