aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/sampleclasses/MethodInvocation.java
blob: 692b5aa0be37937cf6d3048f14f8269920f29551 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. 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);
    }
}