Updated the toString method

This commit is contained in:
Dale Schultz 2015-01-04 21:47:31 -05:00
parent a83afc81a9
commit f552c98fe6
2 changed files with 2 additions and 2 deletions

View File

@ -66,6 +66,6 @@ public final class Module {
@Override
public String toString() {
return name;
return name.toUpperCase();
}
}

View File

@ -42,6 +42,6 @@ public final class Transport {
@Override
public String toString() {
return name;
return description;
}
}