File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -366,24 +366,6 @@ ext.projectDependencyGraph = createProjectDependencyGraph(
366366@Field Set<String > filteredProjects = new HashSet<String > ()
367367filteredProjects. add(" :lint-checks" )
368368
369- static def shouldIncludeInJetBrainsFork (String name , filePath ) {
370- if (filePath != null && filePath instanceof File ) {
371- // This overload used only for projects outside of root directory
372- return false
373- }
374- if (name. contains(" :hero" ) ||
375- name. startsWith(" :emoji2" ) ||
376- name. startsWith(" :hilt" ) ||
377- name. startsWith(" :room" ) ||
378- name. startsWith(" :sqlite" ) ||
379- name. startsWith(" :tv" ) ||
380- name. startsWith(" :wear" ) ||
381- name. startsWith(" :xr" )) {
382- return false
383- }
384- return true
385- }
386-
387369// Calling includeProject(name, filePath) is shorthand for:
388370//
389371// include(name)
@@ -394,8 +376,6 @@ static def shouldIncludeInJetBrainsFork(String name, filePath) {
394376// the Maven artifactId
395377//
396378def includeProject (String name , filePath , List<BuildType > filter = []) {
397- if (! shouldIncludeInJetBrainsFork(name, filePath)) { return }
398-
399379 if (projectPrefixFilter. isConfigured) {
400380 if (projectPrefixFilter. matches(name)) {
401381 filteredProjects. add(name)
You can’t perform that action at this time.
0 commit comments