Skip to content

Commit daaa80e

Browse files
committed
Create proposal and generator sub-packages.
1 parent 8cd0611 commit daaa80e

12 files changed

+703
-420
lines changed

bundles/thymeleaf-extras-eclipse-plugin.content-assist/src/main/java/org/thymeleaf/extras/eclipse/contentassist/AbstractComputer.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,4 @@ protected static boolean isExpressionObjectMethodChar(char c) {
7272

7373
return Character.isLetterOrDigit(c) || c == '#' || c =='.';
7474
}
75-
76-
/**
77-
* Returns whether or not the given character is a valid processor name
78-
* character.
79-
*
80-
* @param c
81-
* @return <tt>true</tt> if <tt>char</tt> is an alphanumeric character, or
82-
* one of the following symbols: <tt>: -</tt>
83-
*/
84-
protected static boolean isProcessorChar(char c) {
85-
86-
return Character.isLetterOrDigit(c) || c == ':' || c == '-';
87-
}
8875
}

0 commit comments

Comments
 (0)