Hi all,

We noticed some odd behaviour today in one of our apps, it appears when we use 
the pattern detailed below, the onSuccessFromStep1() event gets invoked twice 
by Tapestry, this was not the case in 5.1:

public abstract class BaseClass {
   public abstract Object onSuccessFromStep1();
}


public class SubClass extends BaseClass{

@Override
public Object onSuccessFromStep1() {
   if (!foundErrors()) 
        incrementStep();
   return null;
}

}

Of course a simple workaround is to remove the @Override, but that really 
defeats the purpose of using a base class.

regards,
Peter


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to