summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2015-11-07 20:58:06 +0000
committerPatrice Clement <monsieurp@gentoo.org>2015-11-07 20:58:27 +0000
commite4610db38be8f1e8110f92b06ccd834f767ef47d (patch)
tree20e4d132c48f3720a99c5626d0d4ea6f43c5c3d5 /www-servers/resin
parentwww-servers/resin: Version bump. Fixes bug 564528. (diff)
downloadgentoo-e4610db38be8f1e8110f92b06ccd834f767ef47d.tar.gz
gentoo-e4610db38be8f1e8110f92b06ccd834f767ef47d.tar.bz2
gentoo-e4610db38be8f1e8110f92b06ccd834f767ef47d.zip
www-servers/resin: Remove useless patch.
Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'www-servers/resin')
-rw-r--r--www-servers/resin/files/4.0.46/VarType.java.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/www-servers/resin/files/4.0.46/VarType.java.patch b/www-servers/resin/files/4.0.46/VarType.java.patch
deleted file mode 100644
index 05f03f214cb2..000000000000
--- a/www-servers/resin/files/4.0.46/VarType.java.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- modules/kernel/src/com/caucho/config/reflect/VarType.java.orig 2015-08-12 21:05:11.892000000 +0000
-+++ modules/kernel/src/com/caucho/config/reflect/VarType.java 2015-08-12 21:06:04.475000000 +0000
-@@ -33,6 +33,7 @@
- import java.lang.reflect.GenericDeclaration;
- import java.lang.reflect.Type;
- import java.lang.reflect.TypeVariable;
-+import java.lang.reflect.AnnotatedType;
- import java.util.Set;
-
- import com.caucho.inject.Module;
-@@ -188,7 +189,23 @@
-
- return sb.toString();
- }
--
-+
-+ public AnnotatedType[] getAnnotatedBounds() {
-+ return null;
-+ }
-+
-+ public Annotation[] getDeclaredAnnotations() {
-+ return null;
-+ }
-+
-+ public Annotation[] getAnnotations() {
-+ return null;
-+ }
-+
-+ public <T extends Annotation> T getAnnotation(Class<T> klass) {
-+ return null;
-+ }
-+
- static class GenericDeclarationImpl implements GenericDeclaration {
- @Override
- public TypeVariable<?>[] getTypeParameters()