Skip to content

Commit

Permalink
Comma
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Oct 6, 2023
1 parent 0bbc585 commit 82421ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/com/eed3si9n/jarjarabrams/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Main {
outJar,
verbose,
skipManifest,
resetTimestamp,
resetTimestamp
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/com/eed3si9n/jarjarabrams/Shader.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object Shader {
outputJar: Path,
verbose: Boolean,
skipManifest: Boolean,
resetTimestamp: Boolean,
resetTimestamp: Boolean
): Unit = {
val shader = bytecodeShader(rules, verbose, skipManifest)
Zip.flatMap(inputJar, outputJar, resetTimestamp) { struct0 =>
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/scala/com/eed3si9n/jarjarabrams/Zip.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ object Zip {
transfer(in.getInputStream(entry0), baos)
baos.toByteArray()
},
false,
false
)
f(struct0) match {
case Some(struct) =>
Expand Down Expand Up @@ -121,7 +121,7 @@ object Zip {
name: String,
time: Long,
data: Array[Byte],
skipTransform: Boolean = false,
skipTransform: Boolean = false
): EntryStruct = {
val struct = new EntryStruct()
struct.name = name
Expand Down

0 comments on commit 82421ab

Please sign in to comment.