diff options
author | rbuj <robert.buj@gmail.com> | 2014-07-30 10:57:19 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-07-30 12:26:37 +0000 |
commit | c7c535351cec9089e232cc5cb3e59454cef27e17 (patch) | |
tree | 4da9a4f349340fc687caab0872573a17fc8ce842 /javaunohelper/com | |
parent | 6e53a179bbaaba2c7ad8ad06890a94f9eaf8943a (diff) |
javaunohelper: String comparison
Change-Id: Ic0291e655525639b2f3cd33760d8f5f343b208f1
Reviewed-on: https://gerrit.libreoffice.org/10638
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'javaunohelper/com')
-rw-r--r-- | javaunohelper/com/sun/star/comp/helper/Bootstrap.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java index 6c40f7c09f64..3bc5bdea0212 100644 --- a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java +++ b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java @@ -199,7 +199,7 @@ public class Bootstrap { if (! m_loaded_juh) { - if (System.getProperty("java.vendor") == "The Android Project") + if ("The Android Project".equals(System.getProperty("java.vendor"))) { // Find out if we are configured with DISABLE_DYNLOADING or // not. Try to load the lo-bootstrap shared library which |