Java 8: Make GerritConfig repeatable annotation
Change-Id: I6e823a5b2ecb960f87c7128342b811fa40e4d1ba
This commit is contained in:
@@ -17,11 +17,13 @@ package com.google.gerrit.acceptance;
|
||||
import static java.lang.annotation.ElementType.METHOD;
|
||||
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||
|
||||
import java.lang.annotation.Repeatable;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({METHOD})
|
||||
@Retention(RUNTIME)
|
||||
@Repeatable(GerritConfigs.class)
|
||||
public @interface GerritConfig {
|
||||
String name();
|
||||
String value() default "";
|
||||
|
||||
Reference in New Issue
Block a user