Migrate AbortOnUnsupportedOption annotation back to java

This commit is contained in:
Paul Schaub 2025-04-14 11:26:09 +02:00
parent cddc92bd92
commit a2a3bda2b3
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
4 changed files with 44 additions and 33 deletions

View file

@ -0,0 +1,18 @@
// SPDX-FileCopyrightText: 2025 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package sop.testsuite;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface AbortOnUnsupportedOption {
}