aboutsummaryrefslogtreecommitdiffstats
path: root/abi-check-plugin/src/test/java/com/yahoo/abicheck/Public.java
blob: 947b287bbaa2f8c9aab178482b2f546825bb7e17 (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.abicheck;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PACKAGE})
public @interface Public {

}