Skip to content

Commit 9167330

Browse files
authored
upgrade vaadin to 24.9.10 (#1372)
Co-authored-by: KochTobi <kochtobi@users.noreply.github.com>
1 parent d738561 commit 9167330

File tree

5 files changed

+164
-157
lines changed

5 files changed

+164
-157
lines changed

datamanager-app/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,6 @@
168168
<groupId>com.mysql</groupId>
169169
<artifactId>mysql-connector-j</artifactId>
170170
</dependency>
171-
<dependency>
172-
<groupId>com.h2database</groupId>
173-
<artifactId>h2</artifactId>
174-
</dependency>
175171
<dependency>
176172
<groupId>commons-io</groupId>
177173
<artifactId>commons-io</artifactId>

datamanager-app/src/main/java/life/qbic/datamanager/views/projects/project/experiments/experiment/components/experimentalvariable/VariableLevelsInput.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,8 @@ public ShortcutRegistration addFocusShortcut(Key key, KeyModifier... keyModifier
498498
public Registration addFocusListener
499499
(ComponentEventListener<FocusEvent<Component>> listener) {
500500
return levelValue.addFocusListener(
501-
it -> listener.onComponentEvent(new FocusEvent<>(it.getSource(), it.isFromClient())));
501+
it -> listener.onComponentEvent(
502+
new FocusEvent<>(it.getSource(), it.isFromClient(), it.isFromClient())));
502503
}
503504

504505
public boolean isEmpty() {

datamanager-bom/pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
2121
<sonar.organization>qbicsoftware</sonar.organization>
2222
<sonar.projectKey>qbicsoftware_data-manager-app</sonar.projectKey>
23-
<vaadin.version>24.4.13</vaadin.version>
23+
<vaadin.version>24.9.10</vaadin.version>
2424
</properties>
2525

2626
<distributionManagement>
@@ -205,11 +205,6 @@
205205
<artifactId>cache-api</artifactId>
206206
<version>1.1.1</version>
207207
</dependency>
208-
<dependency>
209-
<groupId>com.h2database</groupId>
210-
<artifactId>h2</artifactId>
211-
<version>[2.2.224,)</version>
212-
</dependency>
213208
<dependency>
214209
<groupId>commons-io</groupId>
215210
<artifactId>commons-io</artifactId>

0 commit comments

Comments
 (0)