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

View File

@ -48,7 +48,6 @@ public class Text {
*
* @return returns a ArrayList<String> with all paragraphs inside.
*/
public ArrayList<String> getText() {
return text;
}

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();
}
}

View File

@ -1,10 +0,0 @@
import org.junit.jupiter.api.Test;
class TextInputTest {
@Test
public void inputTest() {
}
}