After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 707925 - False warning for Java "warning: missing ( in exception list on member"
False warning for Java "warning: missing ( in exception list on member"
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.5
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-09-11 16:19 UTC by Paul Schwann
Modified: 2014-01-10 14:42 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
The doxygen configuration file. (97.85 KB, application/octet-stream)
2013-09-11 16:19 UTC, Paul Schwann
Details

Description Paul Schwann 2013-09-11 16:19:24 UTC
Created attachment 254716 [details]
The doxygen configuration file.

Doxygen shows a warning for the following example code:

1  public class Test {
2    /**
3     * @param args The command line arguments.
4     * @throws java.lang.Exception Always thrown.
5     */
6    public static void main(String[] args) throws Exception {
7      throw new Exception("Hello World!");
8    }
9  }


Test.java:6: warning: missing ( in exception list on member main

Its not really clear what it is complaining about but apparently does that for every function which throws exceptions. The same code processed with doxygen 1.7.6 is fine.

Doxygen configuration attached.
Comment 1 Dimitri van Heesch 2013-09-21 19:04:45 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 2 Dimitri van Heesch 2013-12-24 18:59:50 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.6. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information 
that you think can be relevant (preferrably in the form of a self-contained example).
Comment 3 Paul Schwann 2014-01-10 14:42:04 UTC
Thanks a lot for the quick action! Bug is fixed, example code in this report as well as our production code runs through Doxygen without any warnings (again).