File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
openstack/src/main/java/ch/cyberduck/core/openstack Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2828
2929import java .io .IOException ;
3030import java .util .Collections ;
31+ import java .util .HashMap ;
3132import java .util .Map ;
32- import java .util .concurrent .ConcurrentHashMap ;
3333
3434import ch .iterate .openstack .swift .exception .GenericException ;
3535import ch .iterate .openstack .swift .model .AccountInfo ;
@@ -46,7 +46,7 @@ public SwiftAccountLoader(final SwiftSession session) {
4646
4747 @ Override
4848 protected Map <Region , AccountInfo > operate (final PasswordCallback callback ) throws BackgroundException {
49- final Map <Region , AccountInfo > accounts = new ConcurrentHashMap <>();
49+ final Map <Region , AccountInfo > accounts = new HashMap <>();
5050 for (Region region : session .getClient ().getRegions ()) {
5151 try {
5252 final AccountInfo info = session .getClient ().getAccountInfo (region );
You can’t perform that action at this time.
0 commit comments