This repository was archived by the owner on Nov 25, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
src/main/java/xdean/css/editor/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
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 >
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 >
Original file line number Diff line number Diff line change 2020import javafx .css .ParsedValue ;
2121import javafx .scene .paint .Paint ;
2222import javafx .scene .text .Font ;
23- import lombok . extern . slf4j . Slf4j ;
23+ import xdean . jex . log . LogFactory ;
2424import xdean .jex .util .collection .ListUtil ;
2525import xdean .jex .util .task .TaskUtil ;
2626
27- @ Slf4j
2827public 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 }
You can’t perform that action at this time.
0 commit comments