Shrink large box art down to the normal size by changing sample size

This commit is contained in:
Cameron Gutman
2017-12-27 21:28:38 -08:00
parent 31e1fb743e
commit e3a2e40043
2 changed files with 60 additions and 24 deletions

View File

@@ -13,7 +13,7 @@ import java.io.OutputStream;
import java.io.Reader;
public class CacheHelper {
private static File openPath(boolean createPath, File root, String... path) {
public static File openPath(boolean createPath, File root, String... path) {
File f = root;
for (int i = 0; i < path.length; i++) {
String component = path[i];