Skip to content

Commit 3aaef4e

Browse files
committed
Fix raw type warning
1 parent d8e64c3 commit 3aaef4e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

java-manta-examples/src/main/java/DynamicAuthentication.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
77
*/
88

9-
import com.joyent.manta.config.AuthAwareConfigContext;
109
import com.joyent.manta.client.MantaClient;
10+
import com.joyent.manta.config.AuthAwareConfigContext;
11+
import com.joyent.manta.config.BaseChainedConfigContext;
1112
import com.joyent.manta.config.ChainedConfigContext;
1213
import com.joyent.manta.config.DefaultsConfigContext;
13-
import com.joyent.manta.config.SettableConfigContext;
1414

1515
import java.io.IOException;
1616
import java.io.InputStream;
@@ -22,7 +22,7 @@ public class DynamicAuthentication {
2222
public static void main(String... args) throws IOException {
2323

2424
// start with an unauthenticated user
25-
SettableConfigContext config = new ChainedConfigContext(
25+
BaseChainedConfigContext config = new ChainedConfigContext(
2626
new DefaultsConfigContext())
2727
.setMantaURL("https://us-east.manta.joyent.com")
2828
.setMantaUser("user/subuser")

0 commit comments

Comments
 (0)