CenturyLinkCloud / clc-java-sdk

Apache License 2.0
6 stars 4 forks source link

Don't call Runnable.run() #87

Closed brianalbrecht closed 9 years ago

brianalbrecht commented 9 years ago

In lines 52 and 82 of src/main/java/com/centurylink/cloud/sdk/core/auth/services/domain/credentials/PropertiesFileCredentialsProvider.java, you're calling the run() method of a Runnable. This should be probably be changed to call the start() method instead. See the following:

https://www.securecoding.cert.org/confluence/x/KQAiAg http://cwe.mitre.org/data/definitions/572.html