Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManju Mathew2014-05-15 07:04:22 +0000
committerManju Mathew2014-05-15 07:04:22 +0000
commite5d2fa8f2ce8b2e98df074769e47f627b4f4669f (patch)
tree0edbbc651a10e595b3f5b2ba5bc5e06076e29445
parent5557b160ff1562c62e1052d3ac2f4580f60e93f7 (diff)
downloadeclipse.platform.common-e5d2fa8f2ce8b2e98df074769e47f627b4f4669f.tar.gz
eclipse.platform.common-e5d2fa8f2ce8b2e98df074769e47f627b4f4669f.tar.xz
eclipse.platform.common-e5d2fa8f2ce8b2e98df074769e47f627b4f4669f.zip
Fixed Bug 429425: Tutorial Documentation Inconsistency: Java development
user guide > Getting Started > Basic Tutorial > Editing Java elements > Extracting a new method
-rw-r--r--bundles/org.eclipse.jdt.doc.user/gettingStarted/qs-ExtractMethod.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.jdt.doc.user/gettingStarted/qs-ExtractMethod.htm b/bundles/org.eclipse.jdt.doc.user/gettingStarted/qs-ExtractMethod.htm
index b52375a23..01f48edf8 100644
--- a/bundles/org.eclipse.jdt.doc.user/gettingStarted/qs-ExtractMethod.htm
+++ b/bundles/org.eclipse.jdt.doc.user/gettingStarted/qs-ExtractMethod.htm
@@ -28,7 +28,7 @@
while(Test.class.isAssignableFrom(superClass)) {<br>
&nbsp;&nbsp;&nbsp; Method[] methods= superClass.getDeclaredMethods();<br>
&nbsp;&nbsp;&nbsp; for (int i= 0; i &lt; methods.length; i++) {<br>
- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addTestMethod(methods[i],names, constructor);<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; addTestMethod(methods[i],names, theClass);<br>
&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; superClass= superClass.getSuperclass();<br>
}</code></p>

Back to the top