renamed UserInfo to UserInfo Output

added method IndexOutput
This commit is contained in:
Leonardo Brandenberger 2021-11-11 12:11:36 +01:00
parent 1cc559b416
commit c638d5b8dd
1 changed files with 7 additions and 1 deletions

View File

@ -129,10 +129,16 @@ public class TextOutput {
* *
* @param info Benutzerinformationen * @param info Benutzerinformationen
*/ */
public void UserInfo(String info) { public void UserInfoOutput(String info) {
System.out.println(info); System.out.println(info);
} }
public void IndexOutput(ArrayList<String> index) {
for (String word : index) {
System.out.println(word);
}
}
/** /**
* Method to give out the Error "Invalid String". * Method to give out the Error "Invalid String".
*/ */