Home
last modified time | relevance | path

Searched refs:sameTypes (Results 1 – 1 of 1) sorted by relevance

/external/guice/core/src/com/google/inject/internal/
DErrors.java181 List<Binding<T>> sameTypes = injector.findBindingsByType(type); in missingImplementationWithHint() local
182 if (!sameTypes.isEmpty()) { in missingImplementationWithHint()
184 int howMany = Math.min(sameTypes.size(), MAX_MATCHING_TYPES_REPORTED); in missingImplementationWithHint()
188 sb.append(format("%n * %s", sameTypes.get(i).getKey())); in missingImplementationWithHint()
190 int remaining = sameTypes.size() - MAX_MATCHING_TYPES_REPORTED; in missingImplementationWithHint()
230 if (sameTypes.isEmpty() in missingImplementationWithHint()