Fix files which had a mix of tabs and spaces

Change-Id: I5dd646847a2161b574d61bdb4c32c3811cf38b30
This commit is contained in:
Ben Motz 2015-10-08 09:34:14 +01:00
parent a9934846d5
commit 792dd69a3b
2 changed files with 35 additions and 35 deletions

View File

@ -24,10 +24,10 @@ public class AuthException extends RuntimeException {
private static final long serialVersionUID = 5860956829821067827L;
public AuthException(String msg) {
super(msg);
}
public AuthException(String msg, Exception e) {
super(msg, e);
}
super(msg);
}
public AuthException(String msg, Exception e) {
super(msg, e);
}
}

View File

@ -112,7 +112,7 @@ keyword
| SUM
| CNT
| AVG
;
;
period
: INTEGER
@ -134,52 +134,52 @@ txt
| STRING
;
LT
: [lL][tT]
;
: [lL][tT]
;
LT_S
: '<'
;
: '<'
;
LTE
: [lL][tT][eE]
;
: [lL][tT][eE]
;
LTE_S
: '<='
;
: '<='
;
GT
: [gG][tT]
;
: [gG][tT]
;
GT_S
: '>'
;
: '>'
;
GTE
: [gG][tT][eE]
;
: [gG][tT][eE]
;
GTE_S
: '>='
;
: '>='
;
AND
: [aA][nN][dD]
;
: [aA][nN][dD]
;
AND_S
: '&&'
;
: '&&'
;
OR
: [oO][rR]
;
: [oO][rR]
;
OR_S
: '||'
;
: '||'
;
MIN
: [mM][iI][nN]