2013/9/18 Emmanuel Bourg <[email protected]> > Le 18/09/2013 16:57, [email protected] a écrit : > > > public Map<String, Integer> getHeaderMap() { > > - return new LinkedHashMap<String, Integer>(this.headerMap); > > + return this.headerMap == null ? null : new > LinkedHashMap<String, Integer>(this.headerMap); > > } > > > > Would it be possible to use an UnmodifiableMap for headerMap? That would > avoid the need to copy the map on calling getHeaderMap(). >
Furthermore the contributor should be added to pom.xml and changes.xml. Benedikt > > Emmanuel Bourg > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- http://people.apache.org/~britter/ http://www.systemoutprintln.de/ http://twitter.com/BenediktRitter http://github.com/britter
