Merge branch 'master' of oss.readytalk.com:/var/local/git/avian

This commit is contained in:
Joel Dice 2008-09-26 18:17:41 -06:00
commit 1910e1b837

View File

@ -456,6 +456,8 @@ Java_java_lang_System_getVMProperty(Thread* t, jclass, jstring name,
r = makeLocalReference(t, makeString(t, "%s", t->m->finder->path()));
} else if (strcmp(n, "avian.version") == 0) {
r = makeLocalReference(t, makeString(t, AVIAN_VERSION));
} else if (strcmp(n, "file.encoding") == 0) {
r = makeLocalReference(t, makeString(t, "ASCII"));
} else {
const char* v = findProperty(t, n);
if (v) {