mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
cleanup code
This commit is contained in:
parent
572961c2fa
commit
376a28dcbd
@ -120,7 +120,7 @@ public class YoutubeManager {
|
||||
try {
|
||||
youtubeDataLoaderPool.awaitTermination(60, TimeUnit.SECONDS);
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
LOGGER.error("Caught Exception", e);
|
||||
}
|
||||
|
||||
LOGGER.info("YouTube Manager -> Loaded! (" + (System.currentTimeMillis() - millis) + " MS)");
|
||||
@ -129,8 +129,7 @@ public class YoutubeManager {
|
||||
|
||||
public YoutubePlaylist getPlaylistDataById(String playlistId) throws IOException {
|
||||
if (this.playlistCache.containsKey(playlistId)) return this.playlistCache.get(playlistId);
|
||||
if(apiKey.isEmpty()) return null;
|
||||
|
||||
if (apiKey.isEmpty()) return null;
|
||||
YoutubePlaylist playlist;
|
||||
URL playlistInfo = new URL("https://youtube.googleapis.com/youtube/v3/playlists?part=snippet&id=" + playlistId + "&maxResults=1&key=" + apiKey);
|
||||
HttpsURLConnection playlistCon = (HttpsURLConnection) playlistInfo.openConnection();
|
||||
|
@ -24,37 +24,29 @@ import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
public class InteractionBuildArea extends InteractionCustomValues {
|
||||
public static THashMap<String, String> defaultValues = new THashMap<String, String>() {
|
||||
{
|
||||
this.put("tilesLeft", "0");
|
||||
}
|
||||
protected static final THashMap<String, String> defaultValues = new THashMap<String, String>();
|
||||
|
||||
{
|
||||
this.put("tilesRight", "0");
|
||||
}
|
||||
|
||||
{
|
||||
this.put("tilesFront", "0");
|
||||
}
|
||||
|
||||
{
|
||||
this.put("tilesBack", "0");
|
||||
}
|
||||
|
||||
{
|
||||
this.put("builders", "");
|
||||
}
|
||||
};
|
||||
|
||||
private THashSet<RoomTile> tiles;
|
||||
private final THashSet<RoomTile> tiles;
|
||||
|
||||
public InteractionBuildArea(ResultSet set, Item baseItem) throws SQLException {
|
||||
super(set, baseItem, defaultValues);
|
||||
defaultValues.put("tilesLeft", "0");
|
||||
defaultValues.put("tilesRight", "0");
|
||||
defaultValues.put("tilesFront", "0");
|
||||
defaultValues.put("tilesBack", "0");
|
||||
defaultValues.put("builders", "");
|
||||
|
||||
tiles = new THashSet<>();
|
||||
}
|
||||
|
||||
public InteractionBuildArea(int id, int userId, Item item, String extradata, int limitedStack, int limitedSells) {
|
||||
super(id, userId, item, extradata, limitedStack, limitedSells, defaultValues);
|
||||
defaultValues.put("tilesLeft", "0");
|
||||
defaultValues.put("tilesRight", "0");
|
||||
defaultValues.put("tilesFront", "0");
|
||||
defaultValues.put("tilesBack", "0");
|
||||
defaultValues.put("builders", "");
|
||||
|
||||
tiles = new THashSet<>();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user