remove unused code

This commit is contained in:
Dmitry Batkovich
2018-08-21 16:03:44 +03:00
parent 3a58d79a5c
commit 68e4ca218a
3 changed files with 4 additions and 22 deletions

View File

@@ -36,8 +36,11 @@ public interface RefClass extends RefJavaElement {
@NotNull
Set<RefElement> getInTypeReferences();
@Deprecated
@NotNull
Set<RefElement> getInstanceReferences();
default Set<RefElement> getInstanceReferences() {
throw new UnsupportedOperationException();
}
RefMethod getDefaultConstructor();