Skip to content

Commit

Permalink
fixes #457
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpz committed May 26, 2017
1 parent 585cbbd commit 2ae5e76
Show file tree
Hide file tree
Showing 5 changed files with 674 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<checkstyleRules>
<module name="Checker">
<module name="SuppressWarningsFilter" />
<module name="FileTabCharacter" />
<!-- git checkout may change linefeeds on the fly
<module name="RegexpMultiline">
Expand All @@ -405,6 +406,8 @@
<module name="UnnecessaryParentheses" />
<module name="LeftCurly"/>
<module name="RightCurly"/>

<module name="SuppressWarningsHolder" />
</module>
</module>
</checkstyleRules>
Expand Down
49 changes: 49 additions & 0 deletions src/main/java/net/sf/jsqlparser/parser/BaseToken.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2017 JSQLParser
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
* #L%
*/
/*
* Copyright (C) 2017 JSQLParser.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package net.sf.jsqlparser.parser;

/**
*
* @author toben
*/
public class BaseToken {
public int absoluteBegin = 0;
public int absoluteEnd = 0;
}
Loading

0 comments on commit 2ae5e76

Please sign in to comment.