Skip to content

Commit 2338d0d

Browse files
committed
Remove shouldIncludeInJetBrainsFork
1 parent a85ed83 commit 2338d0d

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

settings.gradle

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -366,24 +366,6 @@ ext.projectDependencyGraph = createProjectDependencyGraph(
366366
@Field Set<String> filteredProjects = new HashSet<String>()
367367
filteredProjects.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
//
396378
def 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)

0 commit comments

Comments
 (0)