Skip to content

Commit

Permalink
Merge branch 'dlsc-software-consulting-gmbh-master-11' into master-11
Browse files Browse the repository at this point in the history
  • Loading branch information
reikjarloekl committed Aug 8, 2022
2 parents cbdb10e + 75265e6 commit e1941a6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.dlsc.preferencesfx</groupId>
<artifactId>parent</artifactId>
<version>11.9.0</version>
<version>11.9.1</version>
<packaging>pom</packaging>

<parent>
Expand Down Expand Up @@ -115,19 +115,19 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.0</version>
<version>2.17.1</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.0</version>
<version>2.17.1</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.17.0</version>
<version>2.17.1</version>
</dependency>

</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions preferencesfx-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.dlsc.preferencesfx</groupId>
<artifactId>parent</artifactId>
<version>11.9.0</version>
<version>11.9.1</version>
</parent>

<artifactId>preferencesfx-demo</artifactId>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>com.dlsc.preferencesfx</groupId>
<artifactId>preferencesfx-core</artifactId>
<version>11.9.0</version>
<version>11.9.1</version>
</dependency>

<!-- Logging -->
Expand Down
5 changes: 2 additions & 3 deletions preferencesfx-demo/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@
exports com.dlsc.preferencesfx.demo;

opens com.dlsc.preferencesfx.demo;
exports com.dlsc.preferencesfx.demo.visibility;
opens com.dlsc.preferencesfx.demo.visibility;
}
opens com.dlsc.preferencesfx.demo.extended;
}
2 changes: 1 addition & 1 deletion preferencesfx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.dlsc.preferencesfx</groupId>
<artifactId>parent</artifactId>
<version>11.9.0</version>
<version>11.9.1</version>
</parent>

<name>PreferencesFX</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class Setting<E extends Element, P extends Property> {
private final StringProperty breadcrumb = new SimpleStringProperty("");
private String key = "";

private Setting(String description, E element, P value) {
protected Setting(String description, E element, P value) {
this.description = description;
this.element = element;
this.value = value;
Expand Down

0 comments on commit e1941a6

Please sign in to comment.