From 59fcec1a9cd905326b3fd7548e18b6fd2a4003ee Mon Sep 17 00:00:00 2001 From: John Cortell Date: Mon, 21 Sep 2009 15:13:49 +0000 Subject: [PATCH] Corrected JavaDoc. Referred to method name that was renamed during refactoring. --- .../src/org/eclipse/cdt/dsf/concurrent/RequestMonitor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestMonitor.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestMonitor.java index 18b83995da0..43023f9dc7e 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestMonitor.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestMonitor.java @@ -55,12 +55,12 @@ import org.eclipse.core.runtime.Status; * which is asynchronous (and accepts a request monitor as an argument) and which itself * calls another asynchronous method to complete its operation. For example, in the * request monitor implementation below, the implementation only needs to override - * handleOK(), because the base implementation will handle notifying the + * handleSuccess(), because the base implementation will handle notifying the * parent rm in case the getIngredients() call fails. *
  *     public void createCupCakes(final DataRequestMonitor rm) {
  *         getIngredients(new DataRequestMonitor(fExecutor, rm) {
- *                 public void handleOK() {
+ *                 public void handleSuccess() {
  *                     rm.setData( new CupCake(getData().getFlour(), getData().getSugar(), 
  *                                             getData().getBakingPowder()));
  *                     rm.done();