Skip to content

Commit ec3a0da

Browse files
committed
Create issues for minor TODOs
1 parent 9a08f99 commit ec3a0da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/github/introfog/gitwave/controller/SettingsController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected void save() {
6868
if (bashExeFile.exists() && bashExeFile.getAbsolutePath().endsWith(".exe")) {
6969
final String absolutePath = bashExeFile.getAbsolutePath();
7070
AppConfig.getInstance().setPathToGitBashExe(absolutePath);
71-
// TODO MINOR add check that path is specified to GitBash.exe not for any other .exe
71+
// TODO #7 add check that path is specified to GitBash.exe not for any other .exe
7272
LOGGER.info("Path to GitBash.exe registered to '{}'", absolutePath);
7373
closeStage();
7474
} else {

src/main/java/com/github/introfog/gitwave/controller/main/MainController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected void saveOrEditCommand() {
109109

110110
@FXML
111111
protected void runCommand() {
112-
// TODO MINOR: it is possible to define all action in code, consider is it worth to do it in that way, or leave @FXML methods
112+
// TODO #9 it is possible to define all action in code, consider is it worth to do it in that way, or leave @FXML methods
113113
if (menuController.isValid() && directoryTabController.isValid()
114114
&& commandTabController.isValid() && parametersTabController.isValid()) {
115115

@@ -122,7 +122,7 @@ protected void runCommand() {
122122
AppConfig.getInstance().setLastRunFolder(directoryToRunIn.getAbsolutePath());
123123

124124
new Thread(() -> {
125-
// TODO MINOR rewrite using javafx.concurrent.Task, because it is a native JavaFx way to do smth in background
125+
// TODO #8 rewrite using javafx.concurrent.Task, because it is a native JavaFx way to do smth in background
126126
switchRunButton(true);
127127
final File scriptFile = CommandExecutor.searchGitRepositoriesAndCreateScriptFile(directoryToRunIn,
128128
commandTabController.getCommandWithParameters());

0 commit comments

Comments
 (0)