Merge remote-tracking branch 'upstream/dev/0.12' into dev/0.12.0

This commit is contained in:
Juuz
2022-06-09 00:41:49 +03:00

View File

@@ -296,6 +296,14 @@ public class RunConfig {
}
public List<String> getExcludedLibraryPaths(Project project) {
if (true) {
/*
This whole excluded libraries idea breaks down when the server library version does not match the client.
This is a quick change to disable it meanwhile a proper solution is sorted.
*/
return Collections.emptyList();
}
if (!environment.equals("server")) {
return Collections.emptyList();
}