mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2025-02-10 09:31:51 +01:00
Making the constructor private broke MVA...
Thanks to Jenkins for immediately reporting that!
This commit is contained in:
parent
cab8aaf040
commit
d7303f1289
@ -10,7 +10,10 @@ package com.onarandombox.MultiverseCore.utils;
|
||||
import java.io.File;
|
||||
|
||||
public class FileUtils {
|
||||
private FileUtils() { }
|
||||
protected FileUtils()
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
/*
|
||||
* Delete a folder Courtesy of: lithium3141
|
||||
|
Loading…
Reference in New Issue
Block a user