(MethodInstance[] methods, MappingFormat format, List<NameType> nsTypes, MappingsExportVerbosity verbosity, boolean forAnyInput, Set<Set<MethodInstance>> exportedHierarchies)
| 798 | } |
| 799 | |
| 800 | private static boolean shouldExportAny(MethodInstance[] methods, MappingFormat format, List<NameType> nsTypes, MappingsExportVerbosity verbosity, boolean forAnyInput, Set<Set<MethodInstance>> exportedHierarchies) { |
| 801 | for (MethodInstance m : methods) { |
| 802 | if (shouldExport(m, format, nsTypes, verbosity, forAnyInput, exportedHierarchies)) return true; |
| 803 | } |
| 804 | |
| 805 | return false; |
| 806 | } |
| 807 | |
| 808 | private static boolean shouldExportAny(MethodVarInstance[] vars, MappingFormat format, List<NameType> nsTypes) { |
| 809 | for (MethodVarInstance v : vars) { |
no test coverage detected