Remove unnecessary interface modifiers
This commit is contained in:
parent
44f80a9831
commit
3cb8f27e49
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue