@@ -98,14 +98,10 @@ public void testParseSg67Config() throws Exception {
9898 private void check (String file , CType cType ) throws Exception {
9999 JsonNode jsonNode = YAML .readTree (FileUtils .readFileToString (new File (file ), "UTF-8" ));
100100 int configVersion = 1 ;
101- System .out .println ("%%%%%%%% THIS IS A LINE OF INTEREST %%%%%%%" );
102101 if (jsonNode .get ("_meta" ) != null ) {
103102 Assert .assertEquals (jsonNode .get ("_meta" ).get ("type" ).asText (), cType .toLCString ());
104103 configVersion = jsonNode .get ("_meta" ).get ("config_version" ).asInt ();
105104 }
106-
107-
108- System .out .println ("%%%%%%%% THIS IS A LINE OF INTEREST: CONFIG VERSION: " + configVersion + "%%%%%%%" );
109105
110106 SecurityDynamicConfiguration <?> dc = load (file , cType );
111107 Assert .assertNotNull (dc );
@@ -120,12 +116,10 @@ private SecurityDynamicConfiguration<?> load(String file, CType cType) throws Ex
120116 JsonNode jsonNode = YAML .readTree (FileUtils .readFileToString (new File (file ), "UTF-8" ));
121117 int configVersion = 1 ;
122118
123- System .out .println ("%%%%%%%% THIS IS A LINE OF INTEREST LOAD: CONFIG VERSION: %%%%%%%" );
124119 if (jsonNode .get ("_meta" ) != null ) {
125120 Assert .assertEquals (jsonNode .get ("_meta" ).get ("type" ).asText (), cType .toLCString ());
126121 configVersion = jsonNode .get ("_meta" ).get ("config_version" ).asInt ();
127122 }
128- System .out .println ("%%%%%%%% THIS IS A LINE OF INTEREST: CONFIG VERSION: " + configVersion + "%%%%%%%" );
129123 return SecurityDynamicConfiguration .fromNode (jsonNode , cType , configVersion , 0 , 0 );
130124 }
131125}
0 commit comments