1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 11:42:16 -05:00

Removed unnecessary overriding methods

This commit is contained in:
Tobias Baum 2014-09-14 11:17:02 +02:00
parent a9aa4645af
commit 7d32b3d462
2 changed files with 0 additions and 10 deletions

View File

@ -1194,11 +1194,6 @@ public class Pop3Store extends Store {
mSize = size;
}
@Override
protected void parse(InputStream in) throws IOException, MessagingException {
super.parse(in);
}
@Override
public void setFlag(Flag flag, boolean set) throws MessagingException {
super.setFlag(flag, set);

View File

@ -2029,11 +2029,6 @@ public class WebDavStore extends Store {
this.mSize = size;
}
@Override
public void parse(InputStream in) throws IOException, MessagingException {
super.parse(in);
}
public void setFlagInternal(Flag flag, boolean set) throws MessagingException {
super.setFlag(flag, set);
}