]> WPIA git - gigi.git/blobdiff - lib/jetty/org/eclipse/jetty/util/IteratingNestedCallback.java
updating jetty to jetty-9.2.16.v2016040
[gigi.git] / lib / jetty / org / eclipse / jetty / util / IteratingNestedCallback.java
index e018f43a484be250854487acae1fc1f1be7f6a95..1cf154cad09f0655e9e8df6bb8c8c750147d3e39 100644 (file)
@@ -1,6 +1,6 @@
 //
 //  ========================================================================
-//  Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
+//  Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
 //  ------------------------------------------------------------------------
 //  All rights reserved. This program and the accompanying materials
 //  are made available under the terms of the Eclipse Public License v1.0
@@ -48,15 +48,14 @@ public abstract class IteratingNestedCallback extends IteratingCallback
     }
     
     @Override
-    protected void completed()
+    protected void onCompleteSuccess()
     {
         _callback.succeeded();
     }
-
+    
     @Override
-    public void failed(Throwable x)
+    protected void onCompleteFailure(Throwable x)
     {
-        super.failed(x);
         _callback.failed(x);
     }