MCPcopy Create free account
hub / github.com/google/guice / merge

Method merge

core/src/com/google/inject/internal/Errors.java:611–617  ·  view source on GitHub ↗
(Collection<Message> messages)

Source from the content-addressed store, hash-verified

609 }
610
611 public Errors merge(Collection<Message> messages) {
612 List<Object> sources = getSources();
613 for (Message message : messages) {
614 addMessage(Messages.mergeSources(sources, message));
615 }
616 return this;
617 }
618
619 public Errors merge(Errors moreErrors) {
620 if (moreErrors.root == root || moreErrors.root.errors == null) {

Callers 15

InjectionPointMethod · 0.95
getBindingMethod · 0.95
getMembersInjectorMethod · 0.95
getProviderMethod · 0.95
loadMethod · 0.95
validateMethod · 0.95
errorInUserCodeMethod · 0.95
FactoryProvider2Method · 0.95
forMemberMethod · 0.80
getInjectionPointsMethod · 0.80
initializeBindingMethod · 0.80

Calls 4

getSourcesMethod · 0.95
addMessageMethod · 0.95
mergeSourcesMethod · 0.95
getErrorsMethod · 0.45