diff options
author | Michael Koch <konqueror@gmx.de> | 2003-09-22 08:05:51 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-09-22 08:05:51 +0000 |
commit | b5bb72ec41b6411a5c7a1f00855cb6d743ab1b7a (patch) | |
tree | 63fa1b234db2fe5e0d9c4a2c994f137636bcef77 /libjava | |
parent | 7cdc862eaeeaccd71051b6505a2b93afa4f1bb41 (diff) | |
download | gcc-b5bb72ec41b6411a5c7a1f00855cb6d743ab1b7a.zip gcc-b5bb72ec41b6411a5c7a1f00855cb6d743ab1b7a.tar.gz gcc-b5bb72ec41b6411a5c7a1f00855cb6d743ab1b7a.tar.bz2 |
jni.cc (_Jv_LookupJNIMethod): Remove workaround that should hide a compiler warning but produces a different...
2003-09-22 Michael Koch <konqueror@gmx.de>
* jni.cc (_Jv_LookupJNIMethod): Remove workaround that should hide a
compiler warning but produces a different one now.
From-SVN: r71650
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/jni.cc | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index a2b7450..da57fc0 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,10 @@ 2003-09-22 Michael Koch <konqueror@gmx.de> + * jni.cc (_Jv_LookupJNIMethod): Remove workaround that should hide a + compiler warning but produces a different one now. + +2003-09-22 Michael Koch <konqueror@gmx.de> + * java/net/InetAddress.java: Moves around some code, reformats and adds documentation. No functional changes. diff --git a/libjava/jni.cc b/libjava/jni.cc index 4977907..857ee4b 100644 --- a/libjava/jni.cc +++ b/libjava/jni.cc @@ -2118,9 +2118,7 @@ _Jv_LookupJNIMethod (jclass klass, _Jv_Utf8Const *name, function = _Jv_FindSymbolInExecutable (buf + 1); } } -#else /* WIN32 */ - args_size; /* Dummy statement to avoid unused parameter warning */ -#endif /* ! WIN32 */ +#endif /* WIN32 */ if (function == NULL) { |