From 40a9d99496e098562f090fb7ffce9e749011b131 Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Mon, 20 May 2024 17:58:16 -0400 Subject: Formatting pass --- projects/net.wotonomy.foundation/src/test/java/TestBundle.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'projects/net.wotonomy.foundation/src/test/java/TestBundle.java') diff --git a/projects/net.wotonomy.foundation/src/test/java/TestBundle.java b/projects/net.wotonomy.foundation/src/test/java/TestBundle.java index 7fb5020..9c0b1c7 100644 --- a/projects/net.wotonomy.foundation/src/test/java/TestBundle.java +++ b/projects/net.wotonomy.foundation/src/test/java/TestBundle.java @@ -5,17 +5,19 @@ import java.util.List; import java.util.Properties; public class TestBundle { - public String toString() { return "This is a test"; } - + public String toString() { + return "This is a test"; + } + public static void main(String[] argv) { Properties p = System.getProperties(); List keyList = new ArrayList(p.keySet()); Collections.sort(keyList); Iterator keys = keyList.iterator(); while (keys.hasNext()) { - String key = (String)keys.next(); + String key = (String) keys.next(); System.out.println(key + "=" + p.getProperty(key)); } - + } } -- cgit v1.2.3