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) {
1017
+
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
1248
return;
1238
1249
}
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.");
* Fixed a bug where very large TypeScript files would cause database creation to crash. Large files over 10MB were already excluded from analysis, but the file size check was not applied to TypeScript files.
0 commit comments