diff --git a/src/main/java/us/dot/its/jpo/ode/aws/depositor/AwsDepositor.java b/src/main/java/us/dot/its/jpo/ode/aws/depositor/AwsDepositor.java index 0e98b02..722f338 100644 --- a/src/main/java/us/dot/its/jpo/ode/aws/depositor/AwsDepositor.java +++ b/src/main/java/us/dot/its/jpo/ode/aws/depositor/AwsDepositor.java @@ -405,8 +405,6 @@ JSONObject generateAWSProfile() throws IOException { } static String getEnvironmentVariable(String variableName, String defaultValue) { - // get all environment variables - Map env = System.getenv(); String value = System.getenv(variableName); if (value == null || value.equals("")) { System.out.println("Something went wrong retrieving the environment variable " + variableName);