Skip to content

Commit

Permalink
Ensure Kotlin module integrity when the referenced facade class is null
Browse files Browse the repository at this point in the history
Summary: Part of T32561.

Test Plan: Instrument IKEA app.

Reviewers: bengt.verscheure, toon.willemot

Reviewed By: bengt.verscheure, toon.willemot

Subscribers: toon.willemot

Differential Revision: https://phabricator.guardsquare.com/D41358
Emiel Vandeloo authored and tvoc-gs committed Dec 2, 2024
1 parent 9e2c313 commit 85e16ba
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -126,6 +126,9 @@ public void visitKotlinModule(KotlinModule kotlinModule) {
if (mfp != null) {
util.reportIfNull(
"referenced multi-file part for '" + mfpName + "'", mfp.ownerReferencedClass);
util.reportIfNull(
"referenced multi-file part for '" + mfpName + "'",
mfp.referencedFacadeClass);
}
});
});

0 comments on commit 85e16ba

Please sign in to comment.