Formatting: line length

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1460216 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-23 19:32:06 +00:00
parent d68281f1d5
commit d9a537edb9
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ public class DualLinkedHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> imple
* @param reverseMap the reverse direction map
* @param inverseBidiMap the inverse BidiMap
*/
protected DualLinkedHashBidiMap(final Map<K, V> normalMap, final Map<V, K> reverseMap, final BidiMap<V, K> inverseBidiMap) {
protected DualLinkedHashBidiMap(final Map<K, V> normalMap, final Map<V, K> reverseMap,
final BidiMap<V, K> inverseBidiMap) {
super(normalMap, reverseMap, inverseBidiMap);
}