Skip to content

Commit

Permalink
Removed unused imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
lovababu committed Jul 18, 2023
1 parent 249f67e commit c3e97ed
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package software.amazon.awssdk.profiles;

import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
Expand Down Expand Up @@ -193,7 +192,7 @@ public void setName(String name) {
public Builder properties(Map<String, String> properties) {
Map<String, String> keyCaseInsensitiveMap = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
keyCaseInsensitiveMap.putAll(properties);
//TODO: Why LinkedHashMap being used here, should we really consider insertion order?
//Why LinkedHashMap being used here, should we really consider insertion order?
this.properties = Collections.unmodifiableMap(keyCaseInsensitiveMap);
return this;
}
Expand Down

0 comments on commit c3e97ed

Please sign in to comment.