redundant interface deleted

This commit is contained in:
Dmitry Jemerov
2012-05-22 20:46:02 +02:00
committed by Pavel V. Talanov
parent c7e448ed0f
commit b3246f85a4
2 changed files with 1 additions and 29 deletions
@@ -1,26 +0,0 @@
/*
* Copyright 2010-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.jet.j2k.ast;
/**
* @author ignatov
*/
public interface IMember extends INode {
boolean isStatic();
boolean isAbstract();
}
+1 -3
View File
@@ -23,7 +23,7 @@ import java.util.Set;
/**
* @author ignatov
*/
public abstract class Member extends Node implements IMember {
public abstract class Member extends Node {
@NotNull protected Set<String> myModifiers;
protected Member(Set<String> modifiers) {
@@ -39,12 +39,10 @@ public abstract class Member extends Node implements IMember {
return EMPTY; // package local converted to internal, but we use internal by default
}
@Override
public boolean isAbstract() {
return myModifiers.contains(Modifier.ABSTRACT);
}
@Override
public boolean isStatic() {
return myModifiers.contains(Modifier.STATIC);
}