Skip to content

Commit

Permalink
set rascal-core to 0.8.8-BOOT1
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Mar 27, 2024
1 parent f6732ea commit eeb022c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal-core</artifactId>
<version>0.8.7-BOOT1</version>
<version>0.8.8-BOOT1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/rascalmpl/maven/CompileRascalMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ private boolean handleMessages(PathConfig pcfg, IList moduleMessages) throws Moj

for (IValue error : messages) {
ISourceLocation loc = (ISourceLocation) ((IConstructor) error).get("at");
if(loc.hasLineColumn()) {
if (loc.hasLineColumn()) {
maxLine = Math.max(loc.getBeginLine(), maxLine);
maxColumn = Math.max(loc.getBeginColumn(), maxColumn);
} else {
Expand Down

0 comments on commit eeb022c

Please sign in to comment.