mirror of
https://github.com/hneemann/Digital.git
synced 2025-10-04 10:22:52 -04:00
added some comments
This commit is contained in:
parent
78336c9b32
commit
4065ac4129
@ -36,13 +36,17 @@ public class TestLang extends TestCase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds usages of keys which are not present in the language xml files
|
||||||
|
*
|
||||||
|
* @throws IOException IOException
|
||||||
|
*/
|
||||||
public void testUsages() throws IOException {
|
public void testUsages() throws IOException {
|
||||||
String sources = System.getProperty("sources");
|
String sources = System.getProperty("sources");
|
||||||
if (sources == null) {
|
if (sources == null) {
|
||||||
System.out.println("environment variable sources not set!!!");
|
System.out.println("environment variable sources not set!!!");
|
||||||
System.out.println("Try to use hardcoded " + SOURCEPATH);
|
System.out.println("Try to use hardcoded " + SOURCEPATH);
|
||||||
sources = SOURCEPATH;
|
sources = SOURCEPATH;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
parseTree(new File(sources));
|
parseTree(new File(sources));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user