Java cleanup

-fix constructor declaration
-remove dead copyright notice

Change-Id: I021ef11dd5000a75dba3359fe6d4f49740c3b237
This commit is contained in:
Noel Grandin
2013-04-26 08:38:50 +02:00
parent 6f17a2f66f
commit dfb6a625d3

View File

@@ -16,21 +16,15 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
/**
* @copyright: Sun Microsystems Inc. 2010
*/
package complex.junitskeleton; package complex.junitskeleton;
public class justatest { public class justatest {
public void justatest() public justatest() {
{
System.out.println("justatest CTor."); System.out.println("justatest CTor.");
} }
public void testfkt() public void testfkt() {
{
System.out.println("Test called."); System.out.println("Test called.");
} }
@@ -38,14 +32,10 @@ public class justatest {
* Sleeps for 0.5 sec. to allow StarOffice to react on <code> * Sleeps for 0.5 sec. to allow StarOffice to react on <code>
* reset</code> call. * reset</code> call.
*/ */
public static void shortWait() public static void shortWait() {
{ try {
try
{
Thread.sleep(500); Thread.sleep(500);
} } catch (InterruptedException e) {
catch (InterruptedException e)
{
System.out.println("While waiting :" + e); System.out.println("While waiting :" + e);
} }
} }