mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-28 17:08:03 +00:00
corrected the description of println in exceiont list
This commit is contained in:
parent
44b0f0a330
commit
82a7fe9d3e
@ -48,7 +48,8 @@ public class TypedProgram {
|
|||||||
if(EXCEPTIONS.isEmpty()){
|
if(EXCEPTIONS.isEmpty()){
|
||||||
System.out.println("Es wurde erfolgreich kompiliert.");
|
System.out.println("Es wurde erfolgreich kompiliert.");
|
||||||
}else{
|
}else{
|
||||||
System.out.println("Es wurden insgesamt " + EXCEPTIONS.size() + " Fehlern gefunden:");
|
System.out.println("Es wurden mindestens " + EXCEPTIONS.size() + " Fehlermeldungen gefunden"
|
||||||
|
+ "\nDie bekannte Fehlermeldungen: ");
|
||||||
int counter = 0;
|
int counter = 0;
|
||||||
for(Map.Entry<String, Exception> entry : EXCEPTIONS.entrySet()){
|
for(Map.Entry<String, Exception> entry : EXCEPTIONS.entrySet()){
|
||||||
System.out.println("["+ counter + "] Fehler: " +
|
System.out.println("["+ counter + "] Fehler: " +
|
||||||
|
Loading…
Reference in New Issue
Block a user