Skip to content

Commit

Permalink
Merge pull request usnistgov#49 from jagagit/master
Browse files Browse the repository at this point in the history
AtomicInteger object is not created for "nesting_level" instance variable
  • Loading branch information
vladimirralev authored Jan 28, 2019
2 parents d49c03f + 7b94562 commit 31d96d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gov/nist/core/ParserCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
public abstract class ParserCore {
public static final boolean debug = Debug.parserDebug;

static AtomicInteger nesting_level;
static AtomicInteger nesting_level =new AtomicInteger();

protected LexerCore lexer;

Expand Down

0 comments on commit 31d96d6

Please sign in to comment.