summaryrefslogtreecommitdiff
path: root/ucb/test/com/sun/star
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-09 13:30:49 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-06-11 09:34:00 +0000
commitefd4bfa818e262d7dc219ac3ceb85526fedc732c (patch)
tree932b54f6c3689d3c087f4f3911f66695c8817229 /ucb/test/com/sun/star
parenta6f4fde8baf3eeb36820d18ffad84192e995145f (diff)
java:regulatize the order of 'final' and public/private
Make the order be 'public static' or 'private static' Just makes the code nicer to read. Change-Id: I182424bda45a2d68642e5d04c6091d268ace1fe2 Reviewed-on: https://gerrit.libreoffice.org/16202 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb/test/com/sun/star')
-rw-r--r--ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java6
1 files changed, 3 insertions, 3 deletions
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 5f3c91b2b4a1..a3fb7545dd0f 100644
--- a/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java
+++ b/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java
@@ -39,11 +39,11 @@ import java.io.PrintWriter;
public final class GlobalTransfer_Test extends ComplexTestCase {
- static private final String fileName
+ private static final String fileName
= "testcase-do-not-remove.sxw";
- static private final String httpSourceDir
+ private static final String httpSourceDir
= "http://so-berlin/~webdav/";
- static private final String fileTargetDir
+ private static final String fileTargetDir
= "file:///d:/temp/";
@Override