Skip to content

Commit 5755c59

Browse files
committed
Update pom-scijava parent to 13.1.0
This switches to Parsington from the old scijava-expression-parser.
1 parent dded05f commit 5755c59

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.scijava</groupId>
77
<artifactId>pom-scijava</artifactId>
8-
<version>12.0.0</version>
8+
<version>13.1.0</version>
99
<relativePath />
1010
</parent>
1111

@@ -134,7 +134,7 @@ Institute of Molecular Cell Biology and Genetics.</license.copyrightOwners>
134134
<!-- SciJava dependencies -->
135135
<dependency>
136136
<groupId>org.scijava</groupId>
137-
<artifactId>scijava-expression-parser</artifactId>
137+
<artifactId>parsington</artifactId>
138138
</dependency>
139139

140140
<!-- Third-party dependencies -->

src/main/java/org/scijava/parse/DefaultParseService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
import java.util.List;
3737
import java.util.Map;
3838

39+
import org.scijava.parse.Variable;
40+
import org.scijava.parse.eval.DefaultEvaluator;
3941
import org.scijava.plugin.Plugin;
4042
import org.scijava.service.AbstractService;
4143
import org.scijava.service.Service;
42-
import org.scijava.sjep.Variable;
43-
import org.scijava.sjep.eval.DefaultEvaluator;
4444
import org.scijava.util.ObjectArray;
4545

4646
/**

src/main/java/org/scijava/script/ScriptInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ private <T> T as(final Object v, final Class<T> type) {
517517
if (converted != null) return converted;
518518
// NB: Attempt to convert via string.
519519
// This is useful in cases where a weird type of object came back
520-
// (e.g., org.scijava.sjep.eval.Unresolved), but which happens to have a
520+
// (e.g., org.scijava.parse.eval.Unresolved), but which happens to have a
521521
// nice string representation which ultimately is expressible as the type.
522522
return convertService.convert(v.toString(), type);
523523
}

0 commit comments

Comments
 (0)