diff options
author | Noel Grandin <noel@peralex.com> | 2013-04-26 08:38:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-04-26 08:38:50 +0200 |
commit | dfb6a625d355a92bef3b85fb1dfdce1da64fde0a (patch) | |
tree | 3b839949dfeab688bfb03b97638bdb6ca908e3e7 /qadevOOo/qa | |
parent | 6f17a2f66fa2a4fec56334783410005c4f2f357a (diff) |
Java cleanup
-fix constructor declaration
-remove dead copyright notice
Change-Id: I021ef11dd5000a75dba3359fe6d4f49740c3b237
Diffstat (limited to 'qadevOOo/qa')
-rw-r--r-- | qadevOOo/qa/complex/junitskeleton/justatest.java | 40 |
1 files changed, 15 insertions, 25 deletions
diff --git a/qadevOOo/qa/complex/junitskeleton/justatest.java b/qadevOOo/qa/complex/junitskeleton/justatest.java index 55985cdbd686..ccd3278ebe59 100644 --- a/qadevOOo/qa/complex/junitskeleton/justatest.java +++ b/qadevOOo/qa/complex/junitskeleton/justatest.java @@ -16,37 +16,27 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -/** - * @copyright: Sun Microsystems Inc. 2010 - */ - package complex.junitskeleton; public class justatest { - public void justatest() - { - System.out.println("justatest CTor."); - } + public justatest() { + System.out.println("justatest CTor."); + } - public void testfkt() - { - System.out.println("Test called."); - } + public void testfkt() { + System.out.println("Test called."); + } - /** - * Sleeps for 0.5 sec. to allow StarOffice to react on <code> - * reset</code> call. - */ - public static void shortWait() - { - try - { - Thread.sleep(500) ; - } - catch (InterruptedException e) - { - System.out.println("While waiting :" + e) ; + /** + * Sleeps for 0.5 sec. to allow StarOffice to react on <code> + * reset</code> call. + */ + public static void shortWait() { + try { + Thread.sleep(500); + } catch (InterruptedException e) { + System.out.println("While waiting :" + e); } } |