mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Gaetan Boismal
14.10.2014 03937f1fb928cbb8b29b3fbf32afda4bb4c521a8
OPENDJ-1551 checkpoint : apply patch to ensure compatibility with sdk new Function API and prevents circular dependency problem
1 files modified
1 ■■■■ changed files
opendj3-server-dev/src/server/org/opends/server/types/AttributeParser.java 1 ●●●● patch | view | raw | blame | history
opendj3-server-dev/src/server/org/opends/server/types/AttributeParser.java
@@ -135,6 +135,7 @@
              {
                // use the new code that is not yet committed and compiled (with Void parameter)
                final Method method = f.getClass().getMethod("apply", Object.class, Void.class);
                method.setAccessible(true);
                return (T) method.invoke(f, value, null);
              }
              catch (NoSuchMethodException e2)