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 encoding The encoding to use. Must not be null.
|
||||||
* @param flags Optional argument for enabling implementation-dependent features.
|
* @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;
|
package de.danoeh.antennapod.core.util.flattr;
|
||||||
|
|
||||||
public interface FlattrThing {
|
public interface FlattrThing {
|
||||||
public String getTitle();
|
String getTitle();
|
||||||
public String getPaymentLink();
|
String getPaymentLink();
|
||||||
public FlattrStatus getFlattrStatus();
|
FlattrStatus getFlattrStatus();
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ public interface IPlayer {
|
|||||||
|
|
||||||
void stop();
|
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…
x
Reference in New Issue
Block a user