Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Instrumenter fails on catch multiple exceptions (Java7) #5

Open
osundblad opened this issue Feb 15, 2013 · 1 comment
Open

Instrumenter fails on catch multiple exceptions (Java7) #5

osundblad opened this issue Feb 15, 2013 · 1 comment

Comments

@osundblad
Copy link
Contributor

Instrumenter fails to on the following class:

package test.notnull;

public class InstrumentationFails {

    public void fail() {
        try {
            System.out.println("fail");
        } catch (IllegalStateException | IllegalArgumentException e) {
        }
    }

    public void success() {
        try {
            System.out.println("success");
        } catch (IllegalStateException e) {
        } catch (IllegalArgumentException e) {
        }
    }

}

PS This is probably what happened on my last flawed bug report just couldn't isolate it, see if this is better :-)

@VladRassokhin
Copy link
Owner

Hmm.. interesting. I'll investigate that on weekend.

atorstling pushed a commit to atorstling/intellij-annotations-instrumenter-maven-plugin that referenced this issue Apr 4, 2017
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants