Skip to content

Commit

Permalink
Release 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
zhkl0228 committed Nov 6, 2020
1 parent ddcf4f7 commit 25efdfe
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions unidbg-android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-android</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-dynarmic</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package net.fornwall.jelf;

import com.sun.xml.internal.messaging.saaj.util.ByteOutputStream;

import java.io.ByteArrayOutputStream;
import java.nio.ByteBuffer;

final class ElfStringTable {
Expand All @@ -15,7 +15,7 @@ final class ElfStringTable {
buffer = parser.readBuffer(length);
}

private final ByteOutputStream baos = new ByteOutputStream(16);
private final ByteArrayOutputStream baos = new ByteArrayOutputStream(16);

String get(int index) {
buffer.position(index);
Expand Down
2 changes: 1 addition & 1 deletion unidbg-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-api</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
Expand Down
4 changes: 2 additions & 2 deletions unidbg-dynarmic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-dynarmic</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
</dependency>
</dependencies>
</project>
6 changes: 3 additions & 3 deletions unidbg-ios/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>unidbg-ios</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-dynarmic</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 25efdfe

Please sign in to comment.