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 2012/01/30 12:54:41 UTC

[1/3] git commit: Remove a wrong TODO.

Updated Branches:
  refs/heads/master 1485a856e -> dd243ea4d


Remove a wrong TODO.

This method actually changes the value of "quotationChar" and it may throw ParseException.


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

Branch: refs/heads/master
Commit: dd243ea4da5601f6de0c95b18fa02f515a57c8e6
Parents: 163adc3
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Jan 30 13:53:55 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Jan 30 13:53:55 2012 +0200

----------------------------------------------------------------------
 .../apache/wicket/util/io/FullyBufferedReader.java |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/dd243ea4/wicket-util/src/main/java/org/apache/wicket/util/io/FullyBufferedReader.java
----------------------------------------------------------------------
diff --git a/wicket-util/src/main/java/org/apache/wicket/util/io/FullyBufferedReader.java b/wicket-util/src/main/java/org/apache/wicket/util/io/FullyBufferedReader.java
index dabd867..45c7966 100644
--- a/wicket-util/src/main/java/org/apache/wicket/util/io/FullyBufferedReader.java
+++ b/wicket-util/src/main/java/org/apache/wicket/util/io/FullyBufferedReader.java
@@ -228,7 +228,6 @@ public final class FullyBufferedReader
 	 *            The index to start at
 	 * @return -1 if not found
 	 */
-	// TODO Wicket 1.6 - remove 'throws ParseException' because it is not thrown
 	public int findOutOfQuotes(final char ch, int startPos) throws ParseException
 	{
 		return findOutOfQuotes(ch, startPos, (char)0);
@@ -246,7 +245,6 @@ public final class FullyBufferedReader
 	 *            The current quotation char. Must be ' or ", otherwise will be ignored.
 	 * @return -1 if not found
 	 */
-	// TODO Wicket 1.6 - remove 'throws ParseException' because it is not thrown
 	public int findOutOfQuotes(final char ch, int startPos, char quotationChar)
 		throws ParseException
 	{