Skip to content

Commit

Permalink
Merge branch '5.2.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Jun 7, 2024
2 parents 6b9f4d8 + 520e6ad commit e74230b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,7 @@ class GenericAssetFile extends AbstractAssetFile {
* @return
*/
public Byte[] getBytes() {
Byte[] newByteArray = new Byte[inputStream.bytes.length]
for (int i = 0; i < inputStream.bytes.length; i++) {
newByteArray[i] = inputStream.bytes[i]
}
return newByteArray
return inputStream.bytes
}

/**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=6.0.0-SNAPSHOT
groovyVersion=3.0.17
groovyVersion=3.0.21
org.gradle.warning.mode=none

0 comments on commit e74230b

Please sign in to comment.