Revision: 7898
http://svn.sourceforge.net/foray/?rev=7898&view=rev
Author: victormote
Date: 2006-09-04 18:11:06 -0700 (Mon, 04 Sep 2006)
Log Message:
-----------
Clean up some checkstyle issues.
Modified Paths:
--------------
trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyParser.java
trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyTokenizer.java
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyParser.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyParser.java 2006-09-05 01:09:23 UTC (rev 7897)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyParser.java 2006-09-05 01:11:06 UTC (rev 7898)
@@ -178,7 +178,7 @@
* Checks that the current token is a right parenthesis
* and throws an exception if this isn't the case.
*/
- private final void expectRpar() throws PropertyException {
+ private void expectRpar() throws PropertyException {
if (currentToken != TOK_RPAR) {
throw new PropertyException("expected )");
}
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyTokenizer.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyTokenizer.java 2006-09-05 01:09:23 UTC (rev 7897)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/parse/PropertyTokenizer.java 2006-09-05 01:11:06 UTC (rev 7898)
@@ -325,7 +325,7 @@
* decimal digit (0-9).
* @param c The character to check
*/
- private static final boolean isDigit(final char c) {
+ private static boolean isDigit(final char c) {
return c > 0 && c < 128 && (charMap[ c] & digits) != 0;
}
@@ -334,7 +334,7 @@
* hexadecimal digit (0-9, A-F, a-f).
* @param c The character to check
*/
- private static final boolean isHexDigit(final char c) {
+ private static boolean isHexDigit(final char c) {
return c > 0 && c < 128 && (charMap[ c] & hexchars) != 0;
//return hexchars.indexOf(c) >= 0;
}
@@ -344,7 +344,7 @@
* start character, ie. can start a NAME as defined by XSL.
* @param c The character to check
*/
- private static final boolean isNameStartChar(final char c) {
+ private static boolean isNameStartChar(final char c) {
return c >= 0x80 || c < 0 || (charMap[ c] & nameStartChars) != 0;
//return nameStartChars.indexOf(c) >= 0 || c >= 0x80;
}
@@ -354,7 +354,7 @@
* character, ie. can occur in a NAME as defined by XSL.
* @param c The character to check
*/
- private static final boolean isNameChar(final char c) {
+ private static boolean isNameChar(final char c) {
return c > 0x80 || c < 0 || (charMap[ c] & C_CS) != 0;
//return nameStartChars.indexOf(c) >= 0
// || nameChars.indexOf(c) >= 0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|