blob: 0c03f1f6672c6db3896fee071ae8bfd10b046968 [file] [log] [blame]
// Copyright (c) 2023, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.ir.desugar.backports;
import java.lang.reflect.Method;
public class MethodMethods {
public static int getParameterCount(Method method) {
return method.getParameterTypes().length;
}
}