Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test7/in/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test7/in/A.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test7/in/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test7/in/A.java
new file mode 100644
index 000000000..4120bb73b
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test7/in/A.java
@@ -0,0 +1,11 @@
+package p;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Set;
+
+class A{
+ public List m(Set set, Set set1) throws IOException{
+ return null;
+ }
+} \ No newline at end of file

Back to the top