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:
parent
30c4927d27
commit
d8cc57c83d
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user