File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class SpotifyClient extends SpotifyRestAPI{
2424 private Player player ;
2525 private Playlist playlist ;
2626
27- public SpotifyClient () throws IOException {
27+ public SpotifyClient (){
2828 super ();
2929 this .apiKey = "defaultapikey" ;
3030 this .secretKey = "defaultsecretkey" ;
Original file line number Diff line number Diff line change 22
33import Client .SpotifyClient ;
44
5+ import java .io .IOException ;
6+
57public class Follow extends SpotifyClient {
68
79 private String contentType ;
810 private String playListId ;
911
10- public Follow (){
12+ public Follow () throws IOException {
1113 super ();
12-
1314 }
1415
1516 public String getContentType () {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class Playlist extends SpotifyClient {
1212 private String name ;
1313 private String playlistId ;
1414
15- public Playlist () throws IOException {
15+ public Playlist () {
1616 super ();
1717 }
1818
You can’t perform that action at this time.
0 commit comments