fix wrong package folder

This commit is contained in:
Moritz Zwerger 2023-10-07 19:56:47 +02:00
parent 62585a9df5
commit a1ca0c0269
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4
4 changed files with 4 additions and 4 deletions

View File

@ -50,14 +50,14 @@ object MinosoftMetaTranspiler {
exitProcess(1)
}
if (this.mbf.isEmpty()) throw IllegalStateException("Meta is empty!")
if (mbf.isEmpty()) throw IllegalStateException("Meta is empty!")
storeIndex(this.mbf, index)
storeIndex(mbf, index)
val end = nanos()
val delta = end - start
println("Done (${this.writes}/${this.total}) after ${delta.formatNanos()}!")
println("Done ($writes/$total) after ${delta.formatNanos()}!")
exitProcess(0)
}
@ -103,7 +103,7 @@ object MinosoftMetaTranspiler {
val entry = MetaVersionEntry(version, hash)
mbf.synchronizedGetOrPut(type) { Collections.synchronizedList(mutableListOf()) } += entry
} catch (error: Throwable) {
this.error += Error(version, type, error)
MinosoftMetaTranspiler.error += Error(version, type, error)
}
}