Lines Matching refs:after
40 throw new RuntimeException("-d needs two file name arguments, before and after respectively");
82 Properties after = new Properties();
85 after.load(new FileReader(afterFile));
90 // remove the same contents from the 'after' properties
94 String afterVal = after.getProperty(key);
95 System.out.printf("Removing country: %s. before: %s, after: %s", key, beforeVal, afterVal);
97 after.remove(key);
120 String afterVal = after.getProperty(key);
147 after.remove(key);
153 if (!after.isEmpty()) {
156 keys = after.stringPropertyNames();
161 .append(after.getProperty(key))