mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-22 18:47:20 +01:00
Fixed HideUtilityClassConstructorCheck
This commit is contained in:
parent
ae27a34bb0
commit
ca21047859
@ -10,6 +10,8 @@ package com.onarandombox.MultiverseCore.utils;
|
||||
import java.io.File;
|
||||
|
||||
public class FileUtils {
|
||||
private FileUtils() { }
|
||||
|
||||
/*
|
||||
* Delete a folder Courtesy of: lithium3141
|
||||
*
|
||||
|
@ -20,6 +20,8 @@ import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class LocationManipulation {
|
||||
private LocationManipulation() { }
|
||||
|
||||
private static Map<String, Integer> orientationInts = new HashMap<String, Integer>();
|
||||
|
||||
static {
|
||||
@ -31,7 +33,6 @@ public class LocationManipulation {
|
||||
orientationInts.put("sw", 45);
|
||||
orientationInts.put("w", 90);
|
||||
orientationInts.put("nw", 135);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1,6 +1,8 @@
|
||||
package com.onarandombox.MultiverseCore.utils.webpaste;
|
||||
|
||||
public class PasteServiceFactory {
|
||||
private PasteServiceFactory() { }
|
||||
|
||||
public static PasteService getService(PasteServiceType type, boolean isPrivate) {
|
||||
switch(type) {
|
||||
case PASTEBIN: return new PastebinPasteService(isPrivate);
|
||||
|
Loading…
Reference in New Issue
Block a user