Skip to content

Commit 2ae5e76

Browse files
committed
fixes #457
1 parent 585cbbd commit 2ae5e76

File tree

5 files changed

+674
-2
lines changed

5 files changed

+674
-2
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@
380380
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
381381
<checkstyleRules>
382382
<module name="Checker">
383+
<module name="SuppressWarningsFilter" />
383384
<module name="FileTabCharacter" />
384385
<!-- git checkout may change linefeeds on the fly
385386
<module name="RegexpMultiline">
@@ -405,6 +406,8 @@
405406
<module name="UnnecessaryParentheses" />
406407
<module name="LeftCurly"/>
407408
<module name="RightCurly"/>
409+
410+
<module name="SuppressWarningsHolder" />
408411
</module>
409412
</module>
410413
</checkstyleRules>
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* #%L
3+
* JSQLParser library
4+
* %%
5+
* Copyright (C) 2004 - 2017 JSQLParser
6+
* %%
7+
* This program is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU Lesser General Public License as
9+
* published by the Free Software Foundation, either version 2.1 of the
10+
* License, or (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Lesser Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Lesser Public
18+
* License along with this program. If not, see
19+
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
20+
* #L%
21+
*/
22+
/*
23+
* Copyright (C) 2017 JSQLParser.
24+
*
25+
* This library is free software; you can redistribute it and/or
26+
* modify it under the terms of the GNU Lesser General Public
27+
* License as published by the Free Software Foundation; either
28+
* version 2.1 of the License, or (at your option) any later version.
29+
*
30+
* This library is distributed in the hope that it will be useful,
31+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
32+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33+
* Lesser General Public License for more details.
34+
*
35+
* You should have received a copy of the GNU Lesser General Public
36+
* License along with this library; if not, write to the Free Software
37+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
38+
* MA 02110-1301 USA
39+
*/
40+
package net.sf.jsqlparser.parser;
41+
42+
/**
43+
*
44+
* @author toben
45+
*/
46+
public class BaseToken {
47+
public int absoluteBegin = 0;
48+
public int absoluteEnd = 0;
49+
}

0 commit comments

Comments
 (0)