Delete unused method from JetClassLikeInfo
This commit is contained in:
@@ -30,12 +30,6 @@ public interface JetClassLikeInfo extends JetDeclarationContainer {
|
||||
@NotNull
|
||||
FqName getContainingPackageFqName();
|
||||
|
||||
@NotNull
|
||||
List<JetDelegationSpecifier> getDelegationSpecifiers();
|
||||
|
||||
//@Nullable
|
||||
//Name getNameAsName();
|
||||
|
||||
@Nullable
|
||||
JetModifierList getModifierList();
|
||||
|
||||
|
||||
-12
@@ -37,18 +37,6 @@ public abstract class JetClassOrObjectInfo<E extends JetClassOrObject> implement
|
||||
return element;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NotNull
|
||||
public List<JetDelegationSpecifier> getDelegationSpecifiers() {
|
||||
return element.getDelegationSpecifiers();
|
||||
}
|
||||
|
||||
//@Override
|
||||
//@Nullable
|
||||
//public Name getNameAsName() {
|
||||
// return element.getNameAsName();
|
||||
//}
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
public JetModifierList getModifierList() {
|
||||
|
||||
-6
@@ -48,12 +48,6 @@ public class SyntheticClassObjectInfo implements JetClassLikeInfo {
|
||||
return classInfo.getContainingPackageFqName();
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public List<JetDelegationSpecifier> getDelegationSpecifiers() {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public JetModifierList getModifierList() {
|
||||
|
||||
Reference in New Issue
Block a user