summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.foundation/src/test/java/TestBundle.java
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-05-20 17:58:16 -0400
committerBenjamin Culkin <scorpress@gmail.com>2024-05-20 17:58:16 -0400
commit40a9d99496e098562f090fb7ffce9e749011b131 (patch)
tree437df24d65470582e943e494a52db8ed65a881ae /projects/net.wotonomy.foundation/src/test/java/TestBundle.java
parentff072dfe782f6f22123cd4ba050828d35c0d0fbd (diff)
Formatting pass
Diffstat (limited to 'projects/net.wotonomy.foundation/src/test/java/TestBundle.java')
-rw-r--r--projects/net.wotonomy.foundation/src/test/java/TestBundle.java10
1 files changed, 6 insertions, 4 deletions
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));
}
-
+
}
}