aboutsummaryrefslogtreecommitdiff
path: root/compatibility/BuildInterface.java
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-11-13 18:59:12 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-13 10:13:05 -0500
commitd1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8 (patch)
tree3cf36e22305cc1da608667cfef85afcf682cc21a /compatibility/BuildInterface.java
parent9f89d16aa3ca5f96d73a8394d5159dc78dd5d7cf (diff)
downloadcbt-d1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8.tar.gz
cbt-d1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8.tar.bz2
cbt-d1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8.zip
remove some unnecessary Context fields while we are modifying context
Diffstat (limited to 'compatibility/BuildInterface.java')
-rw-r--r--compatibility/BuildInterface.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/compatibility/BuildInterface.java b/compatibility/BuildInterface.java
index e2b5f36..ebcfb99 100644
--- a/compatibility/BuildInterface.java
+++ b/compatibility/BuildInterface.java
@@ -2,11 +2,11 @@ package cbt;
import java.io.*;
public abstract class BuildInterface implements Dependency{
- public abstract BuildInterface copy(Context context); // needed to configure builds
- public abstract String scalaVersion(); // needed to propagate scalaVersion to dependent builds
public abstract BuildInterface finalBuild(); // needed to propagage through build builds. Maybe we can get rid of this.
public abstract File[] triggerLoopFilesArray(); // needed for watching files across composed builds
// deprecated methods, which clients are still allowed to implement, but not required
+ public abstract BuildInterface copy(Context context);
+ public abstract String scalaVersion();
public abstract String[] crossScalaVersionsArray();
}