aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/sampleclasses/MethodInvocation.java
blob: 4b8b9b6e8256e63d975ba420bff2b07b84c352e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.classanalysis.sampleclasses;

/**
 * @author Tony Vaagenes
 */
public class MethodInvocation {
    void invokeMethod() {
        Interface1 interface1 = null;
        @SuppressWarnings({ "unused", "null" })
        Object o = interface1.methodSignatureTest(null, null);
    }
}