summaryrefslogtreecommitdiff
path: root/python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java
diff options
context:
space:
mode:
Diffstat (limited to 'python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java')
-rw-r--r--python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java b/python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java
index a14a91ef9f9c..90ef99cec362 100644
--- a/python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java
+++ b/python/psi-api/src/com/jetbrains/python/psi/PyStatementPart.java
@@ -15,8 +15,6 @@
*/
package com.jetbrains.python.psi;
-import org.jetbrains.annotations.NotNull;
-
/**
* Abstract part of a multipart statement.
* User: dcheryasov
@@ -24,10 +22,4 @@ import org.jetbrains.annotations.NotNull;
*/
public interface PyStatementPart extends PyElement, PyStatementListContainer {
PyStatementPart[] EMPTY_ARRAY = new PyStatementPart[0];
-
- /**
- * @return the body of the part.
- */
- @NotNull
- PyStatementList getStatementList();
}