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

Matthew Swift
08.20.2013 b7f6b8dc13305ada54fd8a9cdb73a8568981a1a8
opendj-sdk/opendj3/opendj-rest2ldap/src/main/java/org/forgerock/opendj/rest2ldap/Utils.java
@@ -71,6 +71,9 @@
        private ResourceException exception; // Guarded by latch.
        private AccumulatingResultHandler(final int size, final ResultHandler<List<V>> handler) {
            if (size <= 0) {
                throw new IllegalStateException();
            }
            this.latch = new AtomicInteger(size);
            this.results = new ArrayList<V>(size);
            this.handler = handler;