Skip to content

Commit 27c45d8

Browse files
authored
Merge pull request github#6731 from hvitved/remove-reduced-env-var
Remove `CODEQL_REDUCE_FILES_FOLDERS_RELATIONS`
2 parents 3123abf + 364dab6 commit 27c45d8

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

csharp/autobuilder/Semmle.Autobuild.Shared/BuildActions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ private static ProcessStartInfo GetProcessStartInfo(string exe, string arguments
165165
{
166166
if (environment is not null)
167167
environment.ForEach(kvp => pi.Environment[kvp.Key] = kvp.Value);
168-
pi.Environment["CODEQL_REDUCE_FILES_FOLDERS_RELATIONS"] = "true";
169168
}
170169
return pi;
171170
}

csharp/codeql-extractor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ extra_env_vars:
1010
CORECLR_ENABLE_PROFILING: "1"
1111
CORECLR_PROFILER: "{A3C70A64-7D41-4A94-A3F6-FD47D9259997}"
1212
CORECLR_PROFILER_PATH_64: "${env.CODEQL_EXTRACTOR_CSHARP_ROOT}/tools/${env.CODEQL_PLATFORM}/clrtracer64${env.CODEQL_PLATFORM_DLL_EXTENSION}"
13-
CODEQL_REDUCE_FILES_FOLDERS_RELATIONS: "true"
1413
file_types:
1514
- name: cs
1615
display_name: C# sources

javascript/extractor/src/com/semmle/js/extractor/test/TrapTests.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,6 @@ public void runtest() {
142142
options.add(inputFile.getAbsolutePath());
143143
}
144144

145-
LinkedHashMap<String, String> vars = new LinkedHashMap<>();
146-
vars.put("CODEQL_REDUCE_FILES_FOLDERS_RELATIONS", "true");
147-
Env.systemEnv().pushEnvironmentContext(vars);
148-
149145
final List<Pair<String, String>> expectedVsActual = new ArrayList<Pair<String, String>>();
150146
Main main =
151147
new Main(

0 commit comments

Comments
 (0)