| Alan Viverette | 01d05de | 2021-06-10 10:42:05 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| Tiem Song | ecefa44 | 2022-03-24 13:21:15 -0700 | [diff] [blame] | 2 | <issues format="6" by="lint 7.3.0-alpha07" type="baseline" client="gradle" dependencies="false" name="AGP (7.3.0-alpha07)" variant="all" version="7.3.0-alpha07"> |
| Alan Viverette | 01d05de | 2021-06-10 10:42:05 -0400 | [diff] [blame] | 3 | |
| 4 | <issue |
| 5 | id="BanConcurrentHashMap" |
| 6 | message="Detected ConcurrentHashMap usage." |
| 7 | errorLine1="import java.util.concurrent.ConcurrentHashMap;" |
| 8 | errorLine2="~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> |
| 9 | <location |
| 10 | file="integration-tests/src/main/java/androidx/ConcurrentHashMapUsageJava.java" |
| 11 | line="22" |
| 12 | column="1"/> |
| 13 | </issue> |
| 14 | |
| 15 | <issue |
| 16 | id="BanConcurrentHashMap" |
| 17 | message="Detected ConcurrentHashMap usage." |
| Aurimas Liutikas | 45139d4 | 2021-10-07 15:45:47 -0700 | [diff] [blame] | 18 | errorLine1="import java.util.concurrent.ConcurrentHashMap" |
| 19 | errorLine2="~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> |
| Alan Viverette | 01d05de | 2021-06-10 10:42:05 -0400 | [diff] [blame] | 20 | <location |
| Tiem Song | 1e4ad0c | 2021-07-30 15:49:58 -0700 | [diff] [blame] | 21 | file="integration-tests/src/main/java/androidx/ConcurrentHashMapUsageKotlin.kt" |
| 22 | line="19" |
| 23 | column="1"/> |
| 24 | </issue> |
| 25 | |
| 26 | <issue |
| 27 | id="BanConcurrentHashMap" |
| 28 | message="Detected ConcurrentHashMap usage." |
| 29 | errorLine1="import java.util.concurrent.ConcurrentHashMap;" |
| 30 | errorLine2="~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> |
| 31 | <location |
| Alan Viverette | 01d05de | 2021-06-10 10:42:05 -0400 | [diff] [blame] | 32 | file="integration-tests/src/main/java/androidx/Sample.java" |
| 33 | line="19" |
| 34 | column="1"/> |
| 35 | </issue> |
| 36 | |
| 37 | <issue |
| 38 | id="BanSynchronizedMethods" |
| 39 | message="Use of synchronized methods is not recommended" |
| 40 | errorLine1=" public synchronized void someMethod() {" |
| 41 | errorLine2=" ^"> |
| 42 | <location |
| 43 | file="integration-tests/src/main/java/androidx/SynchronizedMethodJava.java" |
| 44 | line="22" |
| 45 | column="5"/> |
| 46 | </issue> |
| 47 | |
| 48 | <issue |
| Jeff Gaston | a4baa26 | 2021-11-02 15:29:55 -0400 | [diff] [blame] | 49 | id="BanSynchronizedMethods" |
| 50 | message="Use of synchronized methods is not recommended" |
| 51 | errorLine1=" @Synchronized" |
| 52 | errorLine2=" ^"> |
| 53 | <location |
| 54 | file="integration-tests/src/main/java/androidx/SynchronizedMethodKotlin.kt" |
| 55 | line="22" |
| 56 | column="5"/> |
| 57 | </issue> |
| 58 | |
| 59 | <issue |
| Alan Viverette | 01d05de | 2021-06-10 10:42:05 -0400 | [diff] [blame] | 60 | id="IdeaSuppression" |
| 61 | message="Uses IntelliJ-specific suppression, should use `@SuppressWarnings("deprecation")`" |
| 62 | errorLine1=" //noinspection deprecation" |
| 63 | errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~"> |
| 64 | <location |
| 65 | file="integration-tests/src/main/java/androidx/IdeaSuppressionJava.java" |
| 66 | line="29" |
| 67 | column="9"/> |
| 68 | </issue> |
| 69 | |
| 70 | <issue |
| Tiem Song | 1e4ad0c | 2021-07-30 15:49:58 -0700 | [diff] [blame] | 71 | id="IdeaSuppression" |
| 72 | message="Uses IntelliJ-specific suppression, should use `@SuppressWarnings("deprecation")`" |
| 73 | errorLine1=" //noinspection deprecation" |
| 74 | errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~"> |
| 75 | <location |
| 76 | file="integration-tests/src/main/java/androidx/IdeaSuppressionKotlin.kt" |
| Aurimas Liutikas | 45139d4 | 2021-10-07 15:45:47 -0700 | [diff] [blame] | 77 | line="27" |
| Tiem Song | 1e4ad0c | 2021-07-30 15:49:58 -0700 | [diff] [blame] | 78 | column="9"/> |
| 79 | </issue> |
| 80 | |
| 81 | <issue |
| Alan Viverette | 01d05de | 2021-06-10 10:42:05 -0400 | [diff] [blame] | 82 | id="PrivateConstructorForUtilityClass" |
| 83 | message="Utility class is missing private constructor" |
| 84 | errorLine1=" static class DefaultInnerClass {" |
| 85 | errorLine2=" ~~~~~~~~~~~~~~~~~"> |
| 86 | <location |
| 87 | file="integration-tests/src/main/java/androidx/PrivateConstructorForUtilityClassJava.java" |
| 88 | line="37" |
| 89 | column="18"/> |
| 90 | </issue> |
| 91 | |
| 92 | <issue |
| 93 | id="PrivateConstructorForUtilityClass" |
| 94 | message="Utility class is missing private constructor" |
| 95 | errorLine1=" protected static class ProtectedInnerClass {" |
| 96 | errorLine2=" ~~~~~~~~~~~~~~~~~~~"> |
| 97 | <location |
| 98 | file="integration-tests/src/main/java/androidx/PrivateConstructorForUtilityClassJava.java" |
| 99 | line="46" |
| 100 | column="28"/> |
| 101 | </issue> |
| 102 | |
| 103 | <issue |
| 104 | id="PrivateConstructorForUtilityClass" |
| 105 | message="Utility class is missing private constructor" |
| 106 | errorLine1=" public static class PublicInnerClass {" |
| 107 | errorLine2=" ~~~~~~~~~~~~~~~~"> |
| 108 | <location |
| 109 | file="integration-tests/src/main/java/androidx/PrivateConstructorForUtilityClassJava.java" |
| 110 | line="55" |
| 111 | column="25"/> |
| 112 | </issue> |
| 113 | |
| 114 | </issues> |