|
20 | 20 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
21 | 21 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
22 | 22 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 | | - * |
| 23 | + * |
24 | 24 | * Copyright 2016 The Bazel Authors. All rights reserved. |
25 | 25 | * |
26 | 26 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
@@ -56,7 +56,7 @@ public class BazelPreferencePage extends FieldEditorPreferencePage implements IW |
56 | 56 | private static class BazelBinaryFieldEditor extends FileFieldEditor { |
57 | 57 | BazelBinaryFieldEditor(Composite parent) { |
58 | 58 | super(BazelPreferenceKeys.BAZEL_PATH_PREF_NAME, "Path to the &Bazel binary:", true, VALIDATE_ON_KEY_STROKE, |
59 | | - parent); |
| 59 | + parent); |
60 | 60 | } |
61 | 61 |
|
62 | 62 | @Override |
@@ -89,14 +89,14 @@ private static class BazelGlobalClasspathSearchEnabledFieldEditor extends Boolea |
89 | 89 |
|
90 | 90 | public BazelGlobalClasspathSearchEnabledFieldEditor(Composite parent) { |
91 | 91 | super(BazelPreferenceKeys.GLOBALCLASSPATH_SEARCH_PREF_NAME, |
92 | | - "Enable &global classpath search? (experimental)", SEPARATE_LABEL, parent); |
| 92 | + "Enable &global classpath search?", SEPARATE_LABEL, parent); |
93 | 93 | } |
94 | 94 | } |
95 | 95 |
|
96 | 96 | private static class BazelExternalDownloadCachePathEditor extends DirectoryFieldEditor { |
97 | 97 | BazelExternalDownloadCachePathEditor(Composite parent) { |
98 | 98 | super(BazelPreferenceKeys.EXTERNAL_JAR_CACHE_PATH_PREF_NAME, |
99 | | - "Optional: path to the local &cache of downloaded jar files:", parent); |
| 99 | + "Optional: path to the local &cache of downloaded jar files:", parent); |
100 | 100 | } |
101 | 101 |
|
102 | 102 | @Override |
@@ -129,6 +129,7 @@ public BazelPreferencePage() { |
129 | 129 | super(GRID); |
130 | 130 | } |
131 | 131 |
|
| 132 | + @Override |
132 | 133 | public void createFieldEditors() { |
133 | 134 | addField(new BazelBinaryFieldEditor(getFieldEditorParent())); |
134 | 135 | addField(new BazelGlobalClasspathSearchEnabledFieldEditor(getFieldEditorParent())); |
|
0 commit comments