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

Jean-Noel Rouvignac
29.33.2015 3d2247dc6913a8ab1fd570e6db4c38a3f6460039
opendj-server2x-adapter/src/main/java/org/forgerock/opendj/adapter/server2x/Converters.java
@@ -168,10 +168,10 @@
     */
    public static org.opends.server.types.SearchScope to(
            final org.forgerock.opendj.ldap.SearchScope searchScope) {
        if (searchScope == null) {
            return null;
        if (searchScope != null) {
            return org.opends.server.types.SearchScope.values()[searchScope.intValue()];
        }
        return org.opends.server.types.SearchScope.values()[searchScope.intValue()];
        return null;
    }
    /**
@@ -436,10 +436,10 @@
     */
    public static org.forgerock.opendj.ldap.SearchScope from(
            final org.opends.server.types.SearchScope searchScope) {
        if (searchScope == null) {
            return null;
        if (searchScope != null) {
            return org.forgerock.opendj.ldap.SearchScope.values().get(searchScope.intValue());
        }
        return org.forgerock.opendj.ldap.SearchScope.values().get(searchScope.intValue());
        return null;
    }
    /**