Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shedfreez committed Nov 20, 2024
1 parent dfbd8c4 commit 2958eec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ private void clearCompositePropertySourceCache() {
Field field = clazz.getDeclaredField("compositePropertySourceCache");
field.setAccessible(true);
field.set(null, null);
} catch (Exception e) {
}
catch (Exception e) {
// ignore
}
}
Expand Down

0 comments on commit 2958eec

Please sign in to comment.