Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix: correctly return contructed envrionment variables.
  • Loading branch information
Eskibear committed Aug 31, 2018
commit 4574ba5d85250b38e6dede74edacca6f0796cb11
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ protected static String[] constructEnvironmentVariables(LaunchArguments launchAr
envVars[i++] = entry.getKey() + "=" + entry.getValue();
}
}
return null;
return envVars;
}

/**
Expand Down