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

/**
 * @author tonytv
 */
public class MethodInvocation {
    void invokeMethod() {
        Interface1 interface1 = null;
        Object o = interface1.methodSignatureTest(null, null);
    }
}