DetectCoreDirectoryFragment: Fix indentation

Also make a class function private.
This commit is contained in:
Lioncash 2014-11-06 10:24:53 -05:00
parent a20ad7d88b
commit 0300d7d840

View File

@ -77,7 +77,7 @@ public final class DetectCoreDirectoryFragment extends DirectoryFragment
/**
* Returns everything after the last . of the given file name or path.
*/
public static String getFileExt(String filePath)
private static String getFileExt(String filePath)
{
int i = filePath.lastIndexOf('.');
if (i >= 0)