Skip to content

Commit 484bc3b

Browse files
committed
#165: Pull Request
1 parent 6f752e0 commit 484bc3b

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@
5252
<artifactId>mapstruct</artifactId>
5353
<version>1.5.5.Final</version>
5454
</dependency>
55+
<dependency>
56+
<groupId>javax.validation</groupId>
57+
<artifactId>validation-api</artifactId>
58+
<version>1.1.0.Final</version>
59+
</dependency>
5560
<dependency>
5661
<groupId>org.mapstruct</groupId>
5762
<artifactId>mapstruct-processor</artifactId>

src/main/java/de/doubleslash/keeptime/KeepTime.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616

1717
package de.doubleslash.keeptime;
1818

19-
import org.springframework.boot.autoconfigure.SpringBootApplication;
20-
import org.springframework.context.annotation.ComponentScan;
21-
import org.springframework.stereotype.Component;
22-
2319
import static javafx.application.Application.launch;
2420

2521
public class KeepTime {

src/main/resources/layouts/settings.fxml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,12 @@
390390
</RadioButton>
391391
<RadioButton fx:id="radioApiOff" layoutX="219.0" layoutY="64.0" mnemonicParsing="false" text="OFF" toggleGroup="$authAPI" />
392392
<PasswordField fx:id="authPassword" layoutX="97.0" layoutY="215.0" prefHeight="26.0" prefWidth="298.0" />
393+
<Label layoutX="24.0" layoutY="261.0" prefHeight="18.0" prefWidth="286.0" text="Warning this is a beta feature" textFill="#bf5d24">
394+
<font>
395+
<Font name="System Bold" size="12.0" />
396+
</font>
397+
</Label>
398+
<Label layoutX="26.0" layoutY="279.0" text="The change will not take effect until the next start " />
393399
</children></AnchorPane>
394400
</content>
395401
<graphic>

src/test/java/de/doubleslash/keeptime/REST_API/controller/WorkMapperTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,4 @@ public void testWorkDTOToWork() {
109109
assertEquals(projectDTO.getId(), work.getProject().getId());
110110
assertEquals(notes, work.getNotes());
111111
}
112-
113-
114112
}

0 commit comments

Comments
 (0)