mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 15:33:09 +00:00
improving output formatting
This commit is contained in:
@@ -67,7 +67,7 @@ public class UserCheck extends Check {
|
||||
"%-20s: %d\n", "Have email", info.get("Have email"));
|
||||
for (Map.Entry<String, Integer> e : info.entrySet()) {
|
||||
if (!e.getKey().equals("Count") && !e.getKey().equals("Have email")) {
|
||||
ret += String.format("%-20s: %s\n", e.getKey(),
|
||||
ret += String.format("%-21s: %s\n", e.getKey(),
|
||||
String.valueOf(e.getValue()));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user