This is an automated email from the ASF dual-hosted git repository.
tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bval.git
The following commit(s) were added to refs/heads/master by this push:
new 6d4cd56 fixed build on java8
6d4cd56 is described below
commit 6d4cd56bfddd81ca861f5831a376b20e1e4593f1
Author: Thomas Andraschko <[email protected]>
AuthorDate: Tue Oct 20 09:43:25 2020 +0200
fixed build on java8
---
.../src/main/java/org/apache/bval/util/EmulatedAnnotatedType.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/bval-jsr/src/main/java/org/apache/bval/util/EmulatedAnnotatedType.java
b/bval-jsr/src/main/java/org/apache/bval/util/EmulatedAnnotatedType.java
index d3799b4..0b0f4d6 100644
--- a/bval-jsr/src/main/java/org/apache/bval/util/EmulatedAnnotatedType.java
+++ b/bval-jsr/src/main/java/org/apache/bval/util/EmulatedAnnotatedType.java
@@ -44,7 +44,7 @@ public class EmulatedAnnotatedType<T extends Type> implements
AnnotatedType {
return wrapArray(wrapped.getActualTypeArguments());
}
- @Override
+ //@Override - Java8 build compatibility
public AnnotatedType getAnnotatedOwnerType() {
return null;
}
@@ -61,7 +61,7 @@ public class EmulatedAnnotatedType<T extends Type> implements
AnnotatedType {
return wrapped.getAnnotatedBounds();
}
- @Override
+ //@Override - Java8 build compatibility
public AnnotatedType getAnnotatedOwnerType() {
return null;
}
@@ -83,7 +83,7 @@ public class EmulatedAnnotatedType<T extends Type> implements
AnnotatedType {
return wrapArray(wrapped.getUpperBounds());
}
- @Override
+ //@Override - Java8 build compatibility
public AnnotatedType getAnnotatedOwnerType() {
return null;
}