Skip to content

Commit

Permalink
Fix some formatting from pull requests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Moderocky committed Jul 8, 2022
1 parent 0231e9f commit 4597af5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/unsafe.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ public static Object get_java_field(Object owner, Object name) {

public static void set_java_field(Object owner, Object name, Object value) {
final FieldAccessor<?> accessor = mirror(owner).field((name) + "");
if (accessor != null) {
accessor.set((value));
}
if (accessor != null) accessor.set((value));
}
//endregion

Expand Down

0 comments on commit 4597af5

Please sign in to comment.