DEBSOURCES
Skip Quicknav
sources / eclipse-jdt-ui / 4.10-1 / org.eclipse.jdt.ui.tests.refactoring / resources / ExtractInterface / test74 / in / B.java
1234567891011
package p; public class B implements OldInterface{ private void s(){ OldInterface i; i= find(); } private A find(){ return new A(); } }