Use static private instead of private static for method declarations
Closes gh-25452
This commit is contained in:
@@ -209,7 +209,7 @@ public abstract class AbstractMessageWriterResultHandler extends HandlerResultHa
|
||||
*/
|
||||
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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user