Remove unnecessary interface modifiers

This commit is contained in:
Martin Fietz 2018-01-14 18:09:15 +01:00
parent 44f80a9831
commit 3cb8f27e49
3 changed files with 6 additions and 6 deletions

View File

@ -24,5 +24,5 @@ public interface FeedGenerator {
* @param encoding The encoding to use. Must not be null.
* @param flags Optional argument for enabling implementation-dependent features.
*/
public void writeFeed(Feed feed, OutputStream outputStream, String encoding, long flags) throws IOException;
void writeFeed(Feed feed, OutputStream outputStream, String encoding, long flags) throws IOException;
}

View File

@ -1,7 +1,7 @@
package de.danoeh.antennapod.core.util.flattr;
public interface FlattrThing {
public String getTitle();
public String getPaymentLink();
public FlattrStatus getFlattrStatus();
String getTitle();
String getPaymentLink();
FlattrStatus getFlattrStatus();
}

View File

@ -67,7 +67,7 @@ public interface IPlayer {
void stop();
public void setVideoScalingMode(int mode);
void setVideoScalingMode(int mode);
public void setWakeMode(Context context, int mode);
void setWakeMode(Context context, int mode);
}