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; private static final long serialVersionUID = 5860956829821067827L;
public AuthException(String msg) { public AuthException(String msg) {
super(msg); super(msg);
} }
public AuthException(String msg, Exception e) { public AuthException(String msg, Exception e) {
super(msg, e); super(msg, e);
} }
} }

View File

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