Remove unnecessary @Override from static method

You can't really @Override a static method, since there is no object
dispatch.  The build system allows it, but Eclipse complains.
This commit is contained in:
Andrew Stadler 2009-08-17 11:18:36 -07:00
parent 30c4927d27
commit d8cc57c83d

View File

@ -41,7 +41,6 @@ public class ExchangeSenderExample extends Sender {
/**
* Factory method.
*/
@Override
public static Sender newInstance(Context context, String uri) throws MessagingException {
return new ExchangeSenderExample(context, uri);
}