Skip to content

Commit

Permalink
Add @Interited to @TypeExcludeFilters
Browse files Browse the repository at this point in the history
Update `@TypeExcludeFilters` so that it is also annotated with
`@Inherited`.

Closes gh-22939
  • Loading branch information
philwebb committed Aug 15, 2020
1 parent 89a6f83 commit 3271542
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* Copyright 2012-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -18,6 +18,7 @@

import java.lang.annotation.Documented;
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;
Expand All @@ -37,6 +38,7 @@
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface TypeExcludeFilters {

/**
Expand Down

0 comments on commit 3271542

Please sign in to comment.