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:55:26 UTC

git commit: WICKET-4354 org/apache/wicket/util/io/FullyBufferedReader getLineAndColumnText not used

Updated Branches:
  refs/heads/wicket-1.5.x acf47396a -> bc9606be5


WICKET-4354
org/apache/wicket/util/io/FullyBufferedReader getLineAndColumnText not used


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

Branch: refs/heads/wicket-1.5.x
Commit: bc9606be5366ab60ff43d54f8a218a92922637ae
Parents: acf4739
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Jan 30 13:50:44 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Jan 30 13:55:13 2012 +0200

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/bc9606be/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 6189b48..dabd867 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
@@ -244,8 +244,6 @@ public final class FullyBufferedReader
 	 *            The index to start at
 	 * @param quotationChar
 	 *            The current quotation char. Must be ' or ", otherwise will be ignored.
-	 * @param insideQuotations
-	 *            Indicates if we are inside quotes or not.
 	 * @return -1 if not found
 	 */
 	// TODO Wicket 1.6 - remove 'throws ParseException' because it is not thrown
@@ -290,15 +288,6 @@ public final class FullyBufferedReader
 	}
 
 	/**
-	 * 
-	 * @return line and column number
-	 */
-	private String getLineAndColumnText()
-	{
-		return " (line " + getLineNumber() + ", column " + getColumnNumber() + ")";
-	}
-
-	/**
 	 * Position the reader at the index provided. Could be anywhere within the data
 	 * 
 	 * @param pos