-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependency com.google.android.libraries.places:places from 3.3…
….0 to 3.4.0 (#135) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Róbert Papp (TWiStErRob) <[email protected]>
- Loading branch information
1 parent
896f5f6
commit 96911f0
Showing
4 changed files
with
21 additions
and
15 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
20 changes: 20 additions & 0 deletions
20
.../feature/range/src/main/java/com/google/errorprone/annotations/RestrictedInheritance.java
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,20 @@ | ||
package com.google.errorprone.annotations; | ||
|
||
/** | ||
* Workaround for <code>class file for com.google.errorprone.annotations.RestrictedInheritance not found</code>. | ||
* | ||
* <pre><code> | ||
* warning: Cannot find annotation method 'explanation()' in type 'RestrictedInheritance' | ||
* warning: Cannot find annotation method 'link()' in type 'RestrictedInheritance' | ||
* warning: Cannot find annotation method 'allowedOnPath()' in type 'RestrictedInheritance' | ||
* warning: Cannot find annotation method 'allowlistAnnotations()' in type 'RestrictedInheritance' | ||
* </code></pre> | ||
* | ||
* @see <a href="https://github.com/google/error-prone/issues/4335">Report</a> | ||
*/ | ||
public @interface RestrictedInheritance { | ||
String explanation(); | ||
String link(); | ||
String allowedOnPath(); | ||
Class<?>[] allowlistAnnotations(); | ||
} |
This file was deleted.
Oops, something went wrong.
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