Skip to content

Commit f3561e2

Browse files
authored
Fix: correctly return contructed envrionment variables. (#214)
1 parent b873efb commit f3561e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/LaunchRequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ protected static String[] constructEnvironmentVariables(LaunchArguments launchAr
164164
envVars[i++] = entry.getKey() + "=" + entry.getValue();
165165
}
166166
}
167-
return null;
167+
return envVars;
168168
}
169169

170170
/**

0 commit comments

Comments
 (0)