From 5d4b89c9652297a0a75ce83442497ac86fbf0a60 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Mon, 9 Jan 2012 08:00:35 -0500 Subject: [PATCH] using some of the embedding interfaces --- interface/src/main/java/xsbti/compile/ScalaInstance.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/main/java/xsbti/compile/ScalaInstance.java b/interface/src/main/java/xsbti/compile/ScalaInstance.java index fd66d9a9c..4e41e1ca2 100644 --- a/interface/src/main/java/xsbti/compile/ScalaInstance.java +++ b/interface/src/main/java/xsbti/compile/ScalaInstance.java @@ -24,10 +24,10 @@ public interface ScalaInstance File compilerJar(); /** Jars provided by this Scala instance other than the compiler and library jars. */ - File[] extraJars(); + File[] otherJars(); /** All jar files provided by this Scala instance.*/ - File[] jars(); + File[] allJars(); /** The unique identifier for this Scala instance. An implementation should usually obtain this from the compiler.properties file in the compiler jar. */ String actualVersion();