author | mikejwre |
Thu, 25 Mar 2010 15:05:15 -0700 | |
changeset 5074 | 9c9bfe8f3a47 |
parent 2 | 90ce3da70b43 |
permissions | -rw-r--r-- |
/* /nodynamiccopyright/ hard coded linenumbers - DO NOT CHANGE */ /* * * This test class has a long * header comment so that the * source line numbers will be * different when compared to: * * RedefineSubTarg.java * * * * * * * * */ class RedefineSubTarg { String foo(String prev) { StringBuffer buf = new StringBuffer(prev); buf.append("Different "); return buf.toString(); } }