Making the constructor private broke MVA...

Thanks to Jenkins for immediately reporting that!
This commit is contained in:
main() 2011-12-12 19:26:00 +01:00
parent cab8aaf040
commit d7303f1289

View File

@ -10,7 +10,10 @@ package com.onarandombox.MultiverseCore.utils;
import java.io.File; import java.io.File;
public class FileUtils { public class FileUtils {
private FileUtils() { } protected FileUtils()
{
throw new UnsupportedOperationException();
}
/* /*
* Delete a folder Courtesy of: lithium3141 * Delete a folder Courtesy of: lithium3141