diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-10 15:36:24 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-12-11 06:09:03 +0000 |
commit | 7557f23b31dcfb4d86c122bb34d9675c0db9a694 (patch) | |
tree | 5feb7be2b0841d8ee60d935cf2e29e9a01a31a27 /qadevOOo/runner/helper | |
parent | 808fd5fbd8868dfd95c8a38676815798fa2b79c4 (diff) |
java: reduce visibility of fields and methods
found by PMD
Change-Id: Id6737916b68ccbdbdeec5d314747a38410923ac6
Reviewed-on: https://gerrit.libreoffice.org/13409
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'qadevOOo/runner/helper')
-rw-r--r-- | qadevOOo/runner/helper/ComplexDescGetter.java | 2 | ||||
-rw-r--r-- | qadevOOo/runner/helper/ProcessHandler.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/helper/ComplexDescGetter.java b/qadevOOo/runner/helper/ComplexDescGetter.java index 1c2099cce8d9..e92cce05d77c 100644 --- a/qadevOOo/runner/helper/ComplexDescGetter.java +++ b/qadevOOo/runner/helper/ComplexDescGetter.java @@ -33,7 +33,7 @@ import complexlib.ComplexTestCase; public class ComplexDescGetter extends DescGetter { - ComplexTest testClass; + private ComplexTest testClass; /** Creates new ComplexDescGetter */ public ComplexDescGetter() diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java index 332eb52f5a83..9e0b352e55eb 100644 --- a/qadevOOo/runner/helper/ProcessHandler.java +++ b/qadevOOo/runner/helper/ProcessHandler.java @@ -729,7 +729,7 @@ public class ProcessHandler * @return <code>true</code> if the external command was * found and successfully started. */ - public boolean isStarted() + private boolean isStarted() { return isStarted; } @@ -741,7 +741,7 @@ public class ProcessHandler * @return <code>true</code> if the command correctly starts, * exits and was not interrupted due to timeout. */ - public boolean isFinished() + private boolean isFinished() { return isFinished; } |