michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: package org.mozilla.gecko.background.testhelpers; michael@0: michael@0: import org.mozilla.gecko.background.healthreport.upload.SubmissionClient.Delegate; michael@0: michael@0: public class StubDelegate implements Delegate { michael@0: @Override michael@0: public void onSoftFailure(long localTime, String id, String reason, Exception e) { } michael@0: @Override michael@0: public void onHardFailure(long localTime, String id, String reason, Exception e) { } michael@0: @Override michael@0: public void onSuccess(long localTime, String id) { } michael@0: }