Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/RenamePrivateMethod/test24/out/A.java')
-rw-r--r--testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/RenamePrivateMethod/test24/out/A.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/RenamePrivateMethod/test24/out/A.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/RenamePrivateMethod/test24/out/A.java
new file mode 100644
index 000000000..4cba5188b
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/RenamePrivateMethod/test24/out/A.java
@@ -0,0 +1,10 @@
+package p;
+//renaming A.m to k
+class A{
+ private void k(String s){
+ }
+}
+class B extends A{
+ void m(java.lang.String s){
+ }
+} \ No newline at end of file

Back to the top