mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
remove unused method
This commit is contained in:
-1
@@ -23,5 +23,4 @@ import org.jetbrains.plugins.groovy.lang.psi.api.statements.expressions.GrExpres
|
||||
* @author ilyas
|
||||
*/
|
||||
public interface GrLiteral extends GrExpression, PsiLiteral {
|
||||
void setStringValue(String value);
|
||||
}
|
||||
|
||||
-7
@@ -4,7 +4,6 @@ import com.intellij.lang.ASTNode;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.plugins.groovy.lang.psi.api.statements.expressions.literals.GrLiteral;
|
||||
import org.jetbrains.plugins.groovy.lang.psi.impl.statements.expressions.GrExpressionImpl;
|
||||
import org.jetbrains.plugins.groovy.lang.resolve.GroovyStringLiteralManipulator;
|
||||
|
||||
|
||||
public abstract class GrAbstractLiteral extends GrExpressionImpl implements GrLiteral {
|
||||
@@ -12,10 +11,4 @@ public abstract class GrAbstractLiteral extends GrExpressionImpl implements GrLi
|
||||
public GrAbstractLiteral(@NotNull ASTNode node) {
|
||||
super(node);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStringValue(String value) {
|
||||
new GroovyStringLiteralManipulator().handleContentChange(this, value);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user