Fixed bugs in TextLogic Commands Replace and Del

This commit is contained in:
MikeZyeman
2021-11-11 15:11:52 +01:00
parent 117420c815
commit 8421b7a6fe
3 changed files with 10 additions and 15 deletions
-1
View File
@@ -48,7 +48,6 @@ public class Text {
*
* @return returns a ArrayList<String> with all paragraphs inside.
*/
public ArrayList<String> getText() {
return text;
}
+10 -4
View File
@@ -1,9 +1,15 @@
/**
* MainKlasse TextEditor
*/
public class TextEditor {
/**
* Run Methode
* <p>
* Startet das Programm auf
*
* @param args
*/
public static void main(String[] args) {
TextLogik t = new TextLogik();
}
}