Skip to content

Commit 487e197

Browse files
binarywangCopilot
andauthored
Update weixin-java-pay/src/main/java/com/github/binarywang/wxpay/v3/util/RsaCryptoUtil.java
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 9b23730 commit 487e197

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/v3/util/RsaCryptoUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private static List<Field> getAllFields(Class<?> clazz) {
4949
List<Field> fields = new ArrayList<>();
5050
while (clazz != null && clazz != Object.class) {
5151
Field[] declaredFields = clazz.getDeclaredFields();
52-
java.util.Collections.addAll(fields, declaredFields);
52+
Collections.addAll(fields, declaredFields);
5353
clazz = clazz.getSuperclass();
5454
}
5555
return fields;

0 commit comments

Comments
 (0)