File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/main/java/com/github/g3force/instanceables Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2020 <dependencies >
2121
2222 <dependency >
23- <groupId >log4j</groupId >
24- <artifactId >log4j</artifactId >
25- <version >1.2.17 </version >
23+ <groupId >org.apache.logging. log4j</groupId >
24+ <artifactId >log4j-api </artifactId >
25+ <version >2.12.1 </version >
2626 </dependency >
2727
2828 <dependency >
2929 <groupId >com.github.g3force</groupId >
3030 <artifactId >String2ValueConverter</artifactId >
31- <version >v1.6 </version >
31+ <version >2.1 </version >
3232 </dependency >
3333
3434 </dependencies >
7474 </plugin >
7575 </plugins >
7676 </build >
77- </project >
77+ </project >
Original file line number Diff line number Diff line change 1818
1919import javax .swing .*;
2020
21- import org .apache .log4j .Logger ;
21+ import org .apache .logging .log4j .LogManager ;
22+ import org .apache .logging .log4j .Logger ;
2223
2324import com .github .g3force .instanceables .InstanceableClass .NotCreateableException ;
2425
2930public class InstanceablePanel extends JPanel
3031{
3132 private static final long serialVersionUID = -6272636064374504265L ;
32- private static final Logger log = Logger .getLogger (InstanceablePanel .class
33- .getName ());
33+ private static final Logger log = LogManager .getLogger (InstanceablePanel .class .getName ());
3434 private final JComboBox <IInstanceableEnum > cbbInstances ;
3535 private final JPanel inputPanel ;
3636 private final List <JComponent > inputFields = new ArrayList <>();
You can’t perform that action at this time.
0 commit comments