We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798ea6a commit 638d334Copy full SHA for 638d334
lib/src/test/java/ch/akuhn/fame/test/JSONPrinterTest.java
@@ -24,6 +24,10 @@ public void testExportJSON() {
24
System.out.println(stream);
25
}
26
27
+ private static String removeWhiteSpaces(String input) {
28
+ return input.replaceAll("\\s+", "");
29
+ }
30
+
31
@Override
32
public void setUp() throws Exception {
33
super.setUp();
@@ -71,11 +75,6 @@ public void testBeginElement() {
71
75
assertEquals("{\"FM3\":\"Java.Class\"", removeWhiteSpaces(stream.toString()));
72
76
73
77
74
-
- private static String removeWhiteSpaces(String input) {
- return input.replaceAll("\\s+", "");
- }
78
79
public void testEmptyEntityPrettyPrinter() {
80
String str = "((FM3.Package))";
81
Tower t = new Tower();
0 commit comments