Skip to content

Commit 79cc918

Browse files
committed
Merge branch 'master' into mila/BloomFilter
2 parents ecda2ba + 1320a47 commit 79cc918

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firebase-functions/src/androidTest/backend/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
},
88
"private": true,
99
"engines": {
10-
"node": "12"
10+
"node": "18"
1111
}
1212
}

tools/lint/src/main/kotlin/ProviderAssignmentDetector.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class ProviderAssignmentDetector : Detector(), SourceCodeScanner {
4040
if (!isProviderGet(method)) {
4141
return
4242
}
43-
val binaryOperation = node.getParentOfType<UBinaryExpression>(true) ?: return
43+
val binaryOperation = node.getParentOfType(UBinaryExpression::class.java) ?: return
4444
if (binaryOperation.operatorIdentifier?.name != "=") return
4545

4646
val assignmentTarget = binaryOperation.leftOperand as? UReferenceExpression ?: return

0 commit comments

Comments
 (0)