Skip to content
This repository was archived by the owner on Nov 25, 2022. It is now read-only.

Commit 76902c7

Browse files
committed
remove lombok
1 parent 22c96a2 commit 76902c7

2 files changed

Lines changed: 2 additions & 19 deletions

File tree

pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15-
<mainClass>xdean.css.editor.CSSMain</mainClass>
1615
</properties>
1716

1817
<dependencyManagement>
@@ -63,11 +62,6 @@
6362
<artifactId>slf4j-api</artifactId>
6463
<version>1.7.5</version>
6564
</dependency>
66-
<dependency>
67-
<groupId>org.projectlombok</groupId>
68-
<artifactId>lombok</artifactId>
69-
<version>1.16.8</version>
70-
</dependency>
7165
<dependency>
7266
<groupId>junit</groupId>
7367
<artifactId>junit</artifactId>
@@ -97,16 +91,6 @@
9791

9892
<build>
9993
<plugins>
100-
<plugin>
101-
<groupId>org.apache.maven.plugins</groupId>
102-
<artifactId>maven-compiler-plugin</artifactId>
103-
<version>3.1</version>
104-
<configuration>
105-
<compilerArguments>
106-
<bootclasspath>${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar</bootclasspath>
107-
</compilerArguments>
108-
</configuration>
109-
</plugin>
11094
<plugin>
11195
<groupId>org.springframework.boot</groupId>
11296
<artifactId>spring-boot-maven-plugin</artifactId>

src/main/java/xdean/css/editor/model/CssContext.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@
2020
import javafx.css.ParsedValue;
2121
import javafx.scene.paint.Paint;
2222
import javafx.scene.text.Font;
23-
import lombok.extern.slf4j.Slf4j;
23+
import xdean.jex.log.LogFactory;
2424
import xdean.jex.util.collection.ListUtil;
2525
import xdean.jex.util.task.TaskUtil;
2626

27-
@Slf4j
2827
public class CssContext {
2928
private static final CssContext MODENA = new CssContext();
3029
private static final String ROOT = "*.root";;
@@ -34,7 +33,7 @@ public class CssContext {
3433
MODENA.load(CssContext.class.getResource(
3534
"/com/sun/javafx/scene/control/skin/modena/modena.css"));
3635
} catch (IOException e) {
37-
log.error("Load modena.css fail!", e);
36+
LogFactory.from(CssContext.class).error("Load modena.css fail!", e);
3837
throw new RuntimeException(e);
3938
}
4039
}

0 commit comments

Comments
 (0)