aboutsummaryrefslogtreecommitdiff
path: root/compatibility/Dependency.java
diff options
context:
space:
mode:
Diffstat (limited to 'compatibility/Dependency.java')
-rw-r--r--compatibility/Dependency.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/compatibility/Dependency.java b/compatibility/Dependency.java
index e23faa6..d1d05b9 100644
--- a/compatibility/Dependency.java
+++ b/compatibility/Dependency.java
@@ -9,6 +9,9 @@ public interface Dependency{
public default long lastModified(){
throw new IncompatibleCbtVersionException("You need to define method lastModified.");
};
+ public default ClassLoader classLoader(){
+ throw new IncompatibleCbtVersionException("You need to define method classLoader.");
+ };
// methods that exist for longer which every CBT version in use should have by now, no default values needed
public abstract String show();