forked from square/dagger
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change Hilt processor to checks the correct "names" property when get…
…ting values from Kotlin @Suppress annotations. This CL also adds regression tests that contain @androidentrypoint classes that use Kotlin @Suppress. Fixes #2834 RELNOTES=Fix #2834:Hilt processor now checks the correct "names" property when getting values from Kotlin @Suppress annotations. PiperOrigin-RevId: 399945204
- Loading branch information
Showing
2 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...eKotlin/app/src/sharedTest/java/dagger/hilt/android/simpleKotlin/KotlinSuppressClasses.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright (C) 2021 The Dagger Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package dagger.hilt.android.simpleKotlin | ||
|
||
import androidx.fragment.app.FragmentActivity | ||
import dagger.hilt.android.AndroidEntryPoint | ||
|
||
// Regression test for https://github.com/google/dagger/issues/2898 | ||
// TODO(bcorso):Replace this with a Kotlin compiler test and verify the SuppressWarnings is | ||
// propagated to the generated Hilt class. | ||
class KotlinSuppressClasses { | ||
@Suppress("deprecation") | ||
@AndroidEntryPoint | ||
class MyActivity : FragmentActivity() | ||
} |