Skip to content

Commit c110edd

Browse files
committed
Rename JarInterpreterLoader to ClassPathInterpreterLoader
1 parent 5f7450b commit c110edd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
/**
1818
* Loads an interpreter from a jar archive.
1919
*/
20-
public class JarInterpreterLoader implements IInterpreterLoader {
20+
public class ClassPathInterpreterLoader implements IInterpreterLoader {
2121
private NonParser nonParser;
2222

2323
/**
2424
* @param nonParser
2525
* The {@link NonParser} to inject as configuration parameter to the VM Builder.
2626
*/
27-
public JarInterpreterLoader(NonParser nonParser) {
27+
public ClassPathInterpreterLoader(NonParser nonParser) {
2828
this.nonParser = nonParser;
2929
}
3030

org.metaborg.spoofax.shell.core/src/main/java/org/metaborg/spoofax/shell/core/DynSemEvaluationStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class DynSemEvaluationStrategy implements IEvaluationStrategy {
3434
*/
3535
public DynSemEvaluationStrategy() {
3636
nonParser = new NonParser();
37-
interpLoader = new JarInterpreterLoader(nonParser);
37+
interpLoader = new ClassPathInterpreterLoader(nonParser);
3838
}
3939

4040
@Override

0 commit comments

Comments
 (0)