Commit 14cede6 1 parent 1b677d5 commit 14cede6 Copy full SHA for 14cede6
File tree 3 files changed +5
-5
lines changed
basex-api/src/test/java/org/basex/api/xmldb
basex-core/src/main/java/org/basex
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public abstract class XMLDBBaseTest extends SandboxTest {
21
21
static final String DRIVER = BXDatabase .class .getName ();
22
22
/** Database/document path. */
23
23
static final String URL =
24
- "xmldb:" + Prop .PROJECT_NAME + "://" + S_LOCALHOST + ':' + StaticOptions .PORT .value + '/' ;
24
+ "xmldb:" + Prop .PROJECT_NAME + "://" + S_LOCALHOST + ':' + StaticOptions .PORT .value () + '/' ;
25
25
/** Name of the collection. */
26
26
static final String COLL = "XMLDB" ;
27
27
/** Database/document path. */
Original file line number Diff line number Diff line change @@ -79,9 +79,9 @@ private BaseXSlider newSlider(final NumberOption option) {
79
79
public void action (final Object comp ) {
80
80
if (comp instanceof BaseXButton ) {
81
81
// reset default values
82
- sliderRed .setValue (GUIOptions .COLORRED .value );
83
- sliderGreen .setValue (GUIOptions .COLORGREEN .value );
84
- sliderBlue .setValue (GUIOptions .COLORBLUE .value );
82
+ sliderRed .setValue (GUIOptions .COLORRED .value () );
83
+ sliderGreen .setValue (GUIOptions .COLORGREEN .value () );
84
+ sliderBlue .setValue (GUIOptions .COLORBLUE .value () );
85
85
}
86
86
sliderRed .assign ();
87
87
sliderGreen .assign ();
Original file line number Diff line number Diff line change 8
8
*/
9
9
public final class NumberOption extends Option <Integer > {
10
10
/** Default value. */
11
- public final Integer value ;
11
+ private final Integer value ;
12
12
13
13
/**
14
14
* Default constructor.
You can’t perform that action at this time.
0 commit comments