Skip to content

Commit

Permalink
Merge branch 'quarkusio:main' into durationConverterMoreUnits
Browse files Browse the repository at this point in the history
  • Loading branch information
manofthepeace authored May 16, 2023
2 parents 5082d83 + f7af2e5 commit f414c6f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@
<mutiny-zero.version>1.0.0</mutiny-zero.version>
<!-- Dev UI -->
<importmap.version>1.0.8</importmap.version>
<vaadin.version>24.0.2</vaadin.version>
<lit.version>2.7.2</lit.version>
<lit-element.version>3.3.1</lit-element.version>
<lit-html.version>2.7.2</lit-html.version>
<ssr-dom-shim.version>1.1.0</ssr-dom-shim.version>
<vaadin.version>24.0.5</vaadin.version>
<lit.version>2.7.4</lit.version>
<lit-element.version>3.3.2</lit-element.version>
<lit-html.version>2.7.4</lit-html.version>
<ssr-dom-shim.version>1.1.1</ssr-dom-shim.version>
<trusted-types.version>2.0.3</trusted-types.version>
<reactive-element.version>1.6.1</reactive-element.version>
<vaadin-usage-statistics.version>2.1.2</vaadin-usage-statistics.version>
Expand All @@ -236,7 +236,7 @@
<lit-state.version>1.7.0</lit-state.version>
<echarts.version>5.4.2</echarts.version>
<wc-codemirror.version>2.1.0</wc-codemirror.version>
<es-module-shims.version>1.7.1</es-module-shims.version>
<es-module-shims.version>1.7.2</es-module-shims.version>
<path-to-regexp.version>2.4.0</path-to-regexp.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ public void setPath(Optional<String> path) {
this.path = path;
}

public String getPath() {
return path.get();
public Optional<String> getPath() {
return path;
}

public void setPostLogoutPath(Optional<String> postLogoutPath) {
Expand Down Expand Up @@ -311,8 +311,8 @@ public void setPath(Optional<String> path) {
this.path = path;
}

public String getPath() {
return path.get();
public Optional<String> getPath() {
return path;
}
}

Expand All @@ -328,8 +328,8 @@ public void setPath(Optional<String> path) {
this.path = path;
}

public String getPath() {
return path.get();
public Optional<String> getPath() {
return path;
}
}

Expand Down

0 comments on commit f414c6f

Please sign in to comment.