Changeset 407 for trunk/openjdk
- Timestamp:
- Dec 31, 2012, 2:08:15 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/share/bin/java.c
r390 r407 1705 1705 NULL_CHECK(printXUsageMessage = (*env)->GetStaticMethodID(env, cls, 1706 1706 "printXUsageMessage", "(Z)V")); 1707 #ifdef __OS2__ 1708 // printing usage info to stderr is not respected, use stdout 1709 (*env)->CallStaticVoidMethod(env, cls, printXUsageMessage, JNI_FALSE); 1710 #else 1707 1711 (*env)->CallStaticVoidMethod(env, cls, printXUsageMessage, JNI_TRUE); 1712 #endif 1708 1713 } else { 1709 1714 NULL_CHECK(initHelp = (*env)->GetStaticMethodID(env, cls, … … 1764 1769 1765 1770 /* Complete the usage message and print to stderr*/ 1771 #ifdef __OS2__ 1772 // printing usage info to stderr is not respected, use stdout 1773 (*env)->CallStaticVoidMethod(env, cls, printHelp, JNI_FALSE); 1774 #else 1766 1775 (*env)->CallStaticVoidMethod(env, cls, printHelp, JNI_TRUE); 1776 #endif 1767 1777 } 1768 1778 return;
Note:
See TracChangeset
for help on using the changeset viewer.