Fixed bugs in TextLogic Commands Replace and Del
This commit is contained in:
parent
117420c815
commit
8421b7a6fe
|
@ -48,7 +48,6 @@ public class Text {
|
|||
*
|
||||
* @return returns a ArrayList<String> with all paragraphs inside.
|
||||
*/
|
||||
|
||||
public ArrayList<String> getText() {
|
||||
return text;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class TextInputTest {
|
||||
|
||||
@Test
|
||||
public void inputTest() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue