Skip to content

Commit

Permalink
1.5.7 STABLE with some fixes, memory leaks fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Retrooper committed Aug 13, 2020
1 parent bdeb421 commit 92d8582
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.github.retrooper.packetevents.reflectionutils.fielddata;

import java.util.Objects;

public class FieldWithIndex {
private final Class<?> cls;
private final int index;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.github.retrooper.packetevents.reflectionutils.fielddata;

import java.util.Objects;

public class FieldWithName {

private final Class<?> cls;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.github.retrooper.packetevents.reflectionutils.methoddata;

import java.util.Objects;

public class MethodWithIndexAndParams {
private final Class<?> cls;
private final int index;
Expand Down

0 comments on commit 92d8582

Please sign in to comment.