mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-30 10:24:53 +01:00
Add throws to avoid interface clash
This commit is contained in:
parent
e56e3868da
commit
99f01bdc90
@ -30,7 +30,7 @@ public interface IPlayer {
|
||||
|
||||
void pause();
|
||||
|
||||
void prepare() throws IllegalStateException;
|
||||
void prepare() throws IllegalStateException, IOException;
|
||||
|
||||
void prepareAsync();
|
||||
|
||||
@ -44,7 +44,7 @@ public interface IPlayer {
|
||||
|
||||
void setScreenOnWhilePlaying(boolean screenOn);
|
||||
|
||||
void setDataSource(String path) throws IllegalStateException,
|
||||
void setDataSource(String path) throws IllegalStateException, IOException,
|
||||
IllegalArgumentException, SecurityException;
|
||||
|
||||
void setDisplay(SurfaceHolder sh);
|
||||
|
Loading…
x
Reference in New Issue
Block a user