Use static private instead of private static for method declarations

Closes gh-25452
This commit is contained in:
XenoAmess
2020-07-22 00:26:28 +08:00
committed by GitHub
parent 05ef630f4f
commit e71f702bb9
4 changed files with 5 additions and 5 deletions

View File

@@ -837,7 +837,7 @@ public abstract class TransactionAspectSupport implements BeanFactoryAware, Init
*/
private static class KotlinDelegate {
static private boolean isSuspend(Method method) {
private static boolean isSuspend(Method method) {
KFunction<?> function = ReflectJvmMapping.getKotlinFunction(method);
return function != null && function.isSuspend();
}