Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>24</maven.compiler.release>
<maven.compiler.release>21</maven.compiler.release>
<exec.mainClass>org.piccode.piccode.Piccode</exec.mainClass>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/editor/EditorWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static EditorWindow the() {

public EditorWindow() {
super("Piccode - DashBoard");
var _ =new CodeEditor();
new CodeEditor();
root = getRootPane();
Icons.loadIcons();
tabEditors = new HashMap<>();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/editor/events/MenuEvents.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static void findEvent(ActionEvent e) {
}

public static void aboutDialog(ActionEvent e) {
var _ = new AboutDialog(EditorWindow.win);
new AboutDialog(EditorWindow.win);
}

public static void closeTab(ActionEvent e) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/editor/panels/DashboardPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void actionPerformed(ActionEvent e) {
};

rFilesList.setCellRenderer(new ListItemRenderer());
var _ = new ListAction(rFilesList, displayAction);
new ListAction(rFilesList, displayAction);
}

private static DefaultListModel<ListItem> filesModel = new DefaultListModel<>();
Expand Down