Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java')
-rw-r--r--org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java b/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java
index b2bd84512..06dc1f809 100644
--- a/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java
+++ b/org.eclipse.jdt.core/eval/org/eclipse/jdt/internal/eval/CodeSnippetSkeleton.java
@@ -45,7 +45,7 @@ public class CodeSnippetSkeleton implements IBinaryType, EvaluationConstants {
char[] methodDescriptor;
char[] selector;
boolean isConstructor;
-
+
public BinaryMethodSkeleton(char[] selector, char[] methodDescriptor, char[][] exceptionTypeNames, boolean isConstructor) {
this.selector = selector;
this.methodDescriptor = methodDescriptor;
@@ -90,7 +90,7 @@ public class CodeSnippetSkeleton implements IBinaryType, EvaluationConstants {
}
@Override
public IBinaryTypeAnnotation[] getTypeAnnotations() {
- return null;
+ return null;
}
@Override
public char[] getSelector() {
@@ -130,7 +130,7 @@ public class CodeSnippetSkeleton implements IBinaryType, EvaluationConstants {
false
)
};
-
+
/**
* CodeSnippetSkeleton constructor comment.
*/
@@ -143,7 +143,7 @@ public IBinaryAnnotation[] getAnnotations() {
}
@Override
public IBinaryTypeAnnotation[] getTypeAnnotations() {
- return null;
+ return null;
}
@Override
public char[] getEnclosingMethod() {

Back to the top