Skip to content

Commit

Permalink
Remove redundant public modifier on inner interfaces
Browse files Browse the repository at this point in the history
This closes #4063
  • Loading branch information
lukecwik committed Nov 9, 2017
2 parents dc0892c + d4f33dd commit b203af7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface String {
@interface String {
java.lang.String value();
}

Expand All @@ -56,7 +56,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Boolean {
@interface Boolean {
boolean value();
}

Expand All @@ -66,7 +66,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Character {
@interface Character {
char value();
}

Expand All @@ -76,7 +76,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Byte {
@interface Byte {
byte value();
}
/**
Expand All @@ -85,7 +85,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Short {
@interface Short {
short value();
}
/**
Expand All @@ -94,7 +94,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Integer {
@interface Integer {
int value();
}

Expand All @@ -104,7 +104,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Long {
@interface Long {
long value();
}

Expand All @@ -114,7 +114,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Float {
@interface Float {
float value();
}

Expand All @@ -124,7 +124,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Double {
@interface Double {
double value();
}

Expand All @@ -135,7 +135,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Enum {
@interface Enum {
java.lang.String value();
}

Expand All @@ -148,7 +148,7 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface InstanceFactory {
@interface InstanceFactory {
java.lang.Class<? extends DefaultValueFactory<?>> value();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@Target(value = ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Required {
@interface Required {
/**
* The groups that the annotated attribute is a member of. A member can be in 0 or more groups.
* Members not in any groups are considered to be in a group consisting exclusively of
Expand Down

0 comments on commit b203af7

Please sign in to comment.