Use static private instead of private static for method declarations
Closes gh-25452
This commit is contained in:
@@ -224,7 +224,7 @@ public abstract class AbstractEncoderMethodReturnValueHandler implements Handler
|
||||
*/
|
||||
private static class KotlinDelegate {
|
||||
|
||||
static private boolean isSuspend(@Nullable Method method) {
|
||||
private static boolean isSuspend(@Nullable Method method) {
|
||||
if (method == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user