You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (fileSize > 1_000_000L * this.maximumFileSizeInMegabytes) {
1016
+
warn("Skipping " + f + " because it is too large (" + StringUtil.printFloat(fileSize / 1_000_000.0) + " MB). The limit is " + this.maximumFileSizeInMegabytes + " MB.");
warn("Skipping " + file + ", which does not exist.");
1237
1251
return;
1238
1252
}
1239
-
longfileSize = f.length();
1240
-
if (fileSize > 1_000_000L * this.maximumFileSizeInMegabytes) {
1241
-
warn("Skipping " + file + " because it is too large (" + StringUtil.printFloat(fileSize / 1_000_000.0) + " MB). The limit is " + this.maximumFileSizeInMegabytes + " MB.");
0 commit comments