[java] API cleanup: remove unused API which was deprecated for a long time (IDEA-259329)

GitOrigin-RevId: b2f2c85514d360e8d716e6f136f7c11760086f0e
master
Nikolay Chashnikov 3 years ago committed by intellij-monorepo-bot
parent dbf407a655
commit e19aab61ce
  1. 11
      src/org/jetbrains/java/decompiler/main/decompiler/BaseDecompiler.java

@ -25,17 +25,6 @@ public class BaseDecompiler {
engine.addLibrary(library);
}
/** @deprecated use {@link #addSource(File)} / {@link #addLibrary(File)} instead */
@Deprecated
public void addSpace(File file, boolean own) {
if (own) {
addSource(file);
}
else {
addLibrary(file);
}
}
public void decompileContext() {
try {
engine.decompileContext();

Loading…
Cancel
Save