Skip to content

Commit

Permalink
1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Thome committed Jul 11, 2017
1 parent 47d8a8e commit 76f1373
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ the maven package.
<dependency>
<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr-api</artifactId>
<version>1.3.7</version>
<version>1.3.8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion inmemantlr-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.3.7</version>
<version>1.3.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ public StreamProvider getStreamProvider() {

/**
* set char stream provider for lexer
* @param provider stream provider
*/
public void setStreamProvider(StreamProvider provider) {
this.provider = provider;
Expand Down Expand Up @@ -461,7 +462,7 @@ public ParserRuleContext parse(String toParse, String production,

LOGGER.debug("load parser {}", parserName);
Parser parser = sc.instanciateParser(tokens, parserName);

Objects.requireNonNull(parser, "Parser must not be null");

// make parser information available to listener
Expand Down
2 changes: 1 addition & 1 deletion inmemantlr-graal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>inmemantlr</artifactId>
<groupId>com.github.julianthome</groupId>
<version>1.3.7</version>
<version>1.3.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion inmemantlr-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.3.7</version>
<version>1.3.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr</artifactId>
<version>1.3.7</version>
<version>1.3.8</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 76f1373

Please sign in to comment.