This commit is contained in:
Oystein 2021-04-26 22:11:19 +02:00
parent 9b2d70c876
commit 7b0dc1548a
5 changed files with 1 additions and 10 deletions

View File

@ -66,8 +66,6 @@ unittest:
reports: reports:
junit: junit:
- target/surefire-reports/TEST-*.xml - target/surefire-reports/TEST-*.xml
# TODO: Separate unit tests and integration tests
# - target/failsafe-reports/TEST-*.xml
generate-coverage: generate-coverage:
stage: docs stage: docs

View File

@ -42,7 +42,7 @@ Probably tastes better than any Apple editor and NetBeans combined.
<!--- <!---
- [devicons/devicon](https://github.com/devicons/devicon) -> Icon languages - [devicons/devicon](https://github.com/devicons/devicon) -> Icon languages
--> -->
- [icons8](https://icons8.com/) -> Filetree and language icons. - [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme) -> Icons for filetree
- [StackOverflow/38278601](https://stackoverflow.com/questions/38278601/javafx-treeview-directory-listing) -> - [StackOverflow/38278601](https://stackoverflow.com/questions/38278601/javafx-treeview-directory-listing) ->
Example of how to generate and show a filetree recursively. Example of how to generate and show a filetree recursively.
- [Youtube/ProgrammingKnowledge](https://www.youtube.com/watch?v=RY_Rb2UVQKQ) -> Introduction to the fundamentals - [Youtube/ProgrammingKnowledge](https://www.youtube.com/watch?v=RY_Rb2UVQKQ) -> Introduction to the fundamentals

View File

@ -75,8 +75,6 @@ public class ModelineController implements Initializable, Controller {
*/ */
@Subscribe @Subscribe
public void handle(FileSaveStateChangedEvent event) { public void handle(FileSaveStateChangedEvent event) {
// TODO: Add CSS styleclass for coloring the saveState label
// whenever it changes
this.saveState.setText(event.getIsSaved() ? "Saved!" : "Modified"); this.saveState.setText(event.getIsSaved() ? "Saved!" : "Modified");
} }

View File

@ -22,9 +22,6 @@ public class FiletreeOperations {
private FiletreeOperations() {} private FiletreeOperations() {}
// TODO: Clean up code that is not in use
// TODO: Error check for recursiveness, and files without icons
/** /**
* The method to generate the fileTree recursively. If it is a directory a * The method to generate the fileTree recursively. If it is a directory a
* CheckBoxStringItem is created and the method is called again. It goes through * CheckBoxStringItem is created and the method is called again. It goes through

View File

@ -33,7 +33,6 @@
<Menu mnemonicParsing="false" text="Change programming language"> <Menu mnemonicParsing="false" text="Change programming language">
<items> <items>
<!-- TODO: Generate buttons based on classes -->
<RadioMenuItem text="Java" <RadioMenuItem text="Java"
fx:id="toggleJava" fx:id="toggleJava"
onAction="#handleLanguageChange" onAction="#handleLanguageChange"
@ -55,7 +54,6 @@
<Menu mnemonicParsing="false" text="Change color theme"> <Menu mnemonicParsing="false" text="Change color theme">
<items> <items>
<!-- TODO: Generate buttons based on classes -->
<RadioMenuItem text="Monokai" <RadioMenuItem text="Monokai"
fx:id="toggleMonokai" fx:id="toggleMonokai"
onAction="#handleThemeChange" onAction="#handleThemeChange"