diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-06 08:55:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-12 09:41:28 +0200 |
commit | 0477e6c39b7ce8b7f6560fbf222c19fe4f358dc8 (patch) | |
tree | 218eba20dd23c6a865cf01aa7532bf1261a69bc8 /ucb | |
parent | e2e55a7c49079dfd896da6515b98d451e4c8735b (diff) |
java: add @Override annotation to overriding methods
Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/qa/complex/tdoc/_XCommandProcessor.java | 1 | ||||
-rw-r--r-- | ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ucb/qa/complex/tdoc/_XCommandProcessor.java b/ucb/qa/complex/tdoc/_XCommandProcessor.java index 6afe124e2f28..1e04f59d7fa9 100644 --- a/ucb/qa/complex/tdoc/_XCommandProcessor.java +++ b/ucb/qa/complex/tdoc/_XCommandProcessor.java @@ -226,6 +226,7 @@ public class _XCommandProcessor { command = new Command(commandName, -1, arg); Thread aborter = new Thread() { + @Override public void run() { for (int i = 0; i < 10; i++) { log.println("try to abort command"); diff --git a/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java b/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java index 6258301f35c5..b3e159769efa 100644 --- a/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java +++ b/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java @@ -46,10 +46,12 @@ public final class GlobalTransfer_Test extends ComplexTestCase { static private final String fileTargetDir = "file:///d:/temp/"; + @Override public String getTestObjectName() { return getClass().getName(); } + @Override public String[] getTestMethodNames() { return new String[] { "testNameClashASK" }; } |