1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-05-10 02:34:46 +00:00
parent a7c5159320
commit be029369eb

View file

@ -12,9 +12,7 @@
*******************************************************************************/
package org.eclipse.cdt.internal.formatter.scanner;
public class Token {
public int type;
public String text;
public int offset;
@ -214,6 +212,7 @@ public class Token {
public boolean isAssignmentOperator() {
return isAssignmentOperator(type);
}
public static boolean isAssignmentOperator(int type) {
switch (type) {
case tASSIGN: