google-errorprone-annotations-2.26.1-150200.5.8.1<>,A܉gNp9|쌚$D#c069~tYS2g#Z֪M&dZ/@Uld kyc#\sjr$K C(jLtxO4 T\1vbc2qN6Ln腓|<~]L.eGa4P"0TTG vU i$A 6|%t~=v2@ z1B-U,rcv>8?8d ' 4 L!BM c~     $Gjt(68@9T:F3G3H4I4,X44Y4D\4p]4^5b5c6d7Be7Gf7Jl7Lu7`v7|w8$x8@y8\z8l8|888Cgoogle-errorprone-annotations2.26.1150200.5.8.1error-prone annotationsGoogle Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. This package contains Google Error Prone annotationsgNh04-ch1am*SUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Development/Libraries/Javahttps://errorprone.infolinuxnoarch<,^A큤A큤A큤gNgNgNegNgNgN134e2bf0193fd47c1b74b1424c809c90b9559d45b8a6427b565319fdcf8de669cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30754486ffaefc434441075c808d30af2c881490c41058c82b6fd57edfbd389856c36d4f5ad6e3eb20107fb77b1b14510c85396ea3c84e9608bc66c7a810ba901crootrootrootrootrootrootrootrootrootrootrootrootrootrootgoogle-errorprone-annotations-2.26.1-150200.5.8.1.src.rpmgoogle-errorprone-annotationsmvn(com.google.errorprone:error_prone_annotations)mvn(com.google.errorprone:error_prone_annotations:pom:)osgi(com.google.errorprone.annotations) @    java-headlessjavapackages-filesystemrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.83.0.4-14.6.0-14.0-15.2-14.14.1f/fe @dS@b%fstrba@suse.comfstrba@suse.comfstrba@suse.comdimstar@opensuse.orgfstrba@suse.com- The binaries are compatible with java 1.8- Upgrade to version 2.26.1 * Changes of version 2.26.1: + Fixes the module name: from 'com.google.errorprone.annotation' to 'com.google.errorprone.annotations'. Amends the OSGi build not to include 'Automatic-Module-Name' in the MANIFEST.MF for the 'annotations' project. * Changes of version 2.26.0: + The 'annotations' artifact now includes a module-info.java for Java Platform Module System support. + Disabled checks passed to -XepPatchChecks are now ignored, instead of causing a crash. + New checks: - SystemConsoleNull: Null-checking System.console() is not a reliable way to detect if the console is connected to a terminal. - EnumOrdinal: Discourage uses of Enum.ordinal() + Closed issues: - Add module-info.java #2649 - 2.19.x: Exception thrown when a disabled check is passed to - XepPatchChecks #3908 - Ignore disabled checks passed to -XepPatchChecks #4028 - feat: add jpms definition for annotations #4311 - Add the 'compile' goal for 'compile-java9' #4314 * Changes of version 2.25.0: + New checks: - JUnitIncompatibleType: Detects incompatible types passed to an assertion, similar to TruthIncompatibleType - RedundantSetterCall: Detects fields set twice in the same chained expression. Generalization of previous ProtoRedundantSet check to also handle AutoValue. + Closed issues: - Crash in UnnecessaryStringBuilder #4195 - Fix typos #4224 - Add support for specifying badEnclosingTypes for BadImport via flags #4228 - Some BugPattern docs are missing code examples #4248 - Remove incorrect statement from BugPattern index doc #4249 - Do not report NonFinalStaticField findings for fields modified in @BeforeAll methods #4251 * Changes of version 2.24.1: + Add an assertion to try to help debug #4225 * Changes of version 2.24.0: + New checks: - MultipleNullnessAnnotations: Discourage multiple nullness annotations - NullableTypeParameter: Discourage nullness annotations on type parameters - NullableWildcard: Discourage nullness annotations on wildcards - SuperCallToObjectMethod: Generalization of SuperEqualsIsObjectEquals, now covers hashCode * Changes of version 2.23.0: + New checks: DuplicateDateFormatField, NonFinalStaticField, StringCharset, StringFormatWithLiteral, SuperEqualsIsObjectEquals + Bug fixes and improvements: #3897, #4114, #4123 * Changes of version 2.22.0: + New checks: - ClosingStandardOutputStreams: Prevents accidentally closing System.{out,err} with try-with-resources - TruthContainsExactlyElementsInUsage: containsExactly is preferred over containsExactlyElementsIn when creating new iterables - UnnecessaryAsync: detects unnecessary use of async primitives in local (and hence single-threaded) scopes - ReturnAtTheEndOfVoidFunction: detects unnecessary return statements at the end of void functions - MultimapKeys: Suggests using keySet() instead of iterating over Multimap.keys(), which does not collapse duplicates + Bug fixes and improvements: - Don't complain about literal IP addresses in AddressSelection - Prevent SuggestedFixes#renameMethod from modifying return type declaration - Fix UnusedVariable false positives for private record parameters - When running in conservative mode, no longer assume that implementations of Map.get, etc. return null - CanIgnoreReturnValueSuggester: Support additional exempting method annotations - UnusedVariable: exclude junit5's @RegisterExtension - Support running all available patch checks - Upgrade java-diff-utils 4.0 -> 4.12 - Flag unused Refaster template parameters - Support @SuppressWarnings("all") - Prevent Refaster UMemberSelect from matching method parameters - MissingDefault : Don't require // fall out comments on expression switches - Skip UnnecessaryLambda findings for usages in enhanced for loops - Fix bug where nested MissingBraces violations' suggested fixes result in broken code - Add support for specifying exemptPrefixes/exemptNames for UnusedVariable via flags - UnusedMethod: Added exempting variable annotations * Changes of version 2.21.1: + Handle overlapping ranges in suppressedRegions + Add AddressSelection to discourage APIs that convert a hostname to a single address * Changes of version 2.21.0: + New Checkers: - AttemptedNegativeZero: Prevents accidental use of -0, which is the same as 0. The floating-point negative zero is -0.0. - ICCProfileGetInstance: Warns on uses of ICC_Profile.getInstance(String), due to JDK-8191622. - MutableGuiceModule: Fields in Guice modules should be final. - NullableOptional: Discourages @Nullable-annotated Optionals. - OverridingMethodInconsistentArgumentNamesChecker: Arguments of overriding method are inconsistent with overridden method. + Fixed issues: - Avoid MemberName IOOBE on lambda parameters inside overriding methods #3976 - Improve LockOnNonEnclosingClassLiteral documentation #3986 - Security scan reported high CVE for com.google.guava:guava:31.1-jre #4001 - Upgrade guava to 32.0.1 #4002 - Proposal: checker to prevent other checkers from calling javac methods that changed across JDKs #4026 - Add support in ASTHelpersSuggestions for getEnclosedElements [#4027] * Changes of version 2.20.0: + This release is compatible with early-access builds of JDK 21. + New Checkers: InlineTrivialConstant, UnnecessaryStringBuilder, BanClassLoader, DereferenceWithNullBranch, DoNotUseRuleChain, LockOnNonEnclosingClassLiteral, MissingRefasterAnnotation, NamedLikeContextualKeyword, NonApiType + Fixes issues: - Introduce MissingRefasterAnnotation checker #2232 - Fix minor typo in URepeated #2243 - Drop unused constant Template#AUTOBOXING_DEFAULT #2997 - Introduce command-line flag -XepAllSuggestionsAsWarnings [#3301] - JDK21 compatibility #3843 - Add OSGi runtime metadata to error-prone's MANIFEST.MF files [#3903] - Use EISOP Checker Framework version 3.34.0-eisop1 #3918 - NotJavadoc pattern does not allow Javadoc on module declarations #3923 - ErrorProneInjector incorrectly picks up the no-args constructor #3931 - Several high CVEs related to dependency com.google.protobuf:protobuf-java:3.19.2 #3945 - Upgrade protobuf-java to 3.19.6 #3946 * Changes of version 2.19.1: + This release fixes a binary compatibility issue when running on JDK 11 * Changes of version 2.19.0: + New Checkers: NotJavadoc, StringCaseLocaleUsage, UnnecessaryTestMethodPrefix + Fixes issues: - Exclude inner classes annotated with @Nested from ClassCanBeStatic rule #956 - Optimize VisitorState#getSymbolFromName #3504 - ClassCanBeStatic: Exclude JUnit @Nested classes #3654 - BadImport: flag static import of newInstance methods #3703 - Support given for enforcing DirectInvocationOnMock: issue 3396 #3731 - Handle yield statement case in ASTHelpers#targetType #3737 - Should ASTHelpers.getSymbol(Tree) be annotated with @Nullable? #3760 - Fix '@' character in javadoc code snippets #3779 - Replace guava cache with caffeine #3796 - Discourage APIs locale-dependent APIs like String.to{Lower,Upper}Case #3809 - Introduce StringCaseLocaleUsage check #3813 * Changes of version 2.18.0: + New Checkers: InjectOnBugCheckers, LabelledBreakTarget, UnusedLabel, YodaCondition + Fixes issues: - @SuppressWarnings("InlineFormatString") doesn't work #1650 - Refaster: support method invocation type argument inlining [#2706] - java.lang.IllegalArgumentException: Cannot edit synthetic AST nodes with specific record constructor #3404 - Rename class to match filename #3493 - Optimize VisitorState#getSymbolFromName #3504 - refactor: refactor bad smell UnusedLabel #3519 - LambdaFunctionalInterface crash with IllegalArgumentException when processing an enum constructor taking a lambda #3579 - Fix JDK 20-ea build compatibility #3610 - UngroupedOverloads: ignore generated constructors #3632 - [errorprone 2.17.0] NPE in StatementSwitchToExpressionSwitch.analyzeSwitchTree #3638 - StatementSwitchToExpressionSwitch: handle empty statement blocks #3645 - StatementSwitchToExpressionSwitch: only trigger on compatible target versions #3646 - Fix Finalize bugpattern to match protected finalize() #3652 - Make MemoizeConstantVisitorStateLookups check suppressible [#3690] * Changes of version 2.17.0: + New Checkers: AvoidObjectArrays, Finalize, IgnoredPureGetter, ImpossibleNullComparison, MathAbsoluteNegative, NewFileSystem, StatementSwitchToExpressionSwitch, UnqualifiedYield + Fixed issues: - InvalidParam warning on Javadoc for Java record components [#2321] - UnusedMethod flags @JsonValue methods as unused #3144 - UnusedMethod: Add more JPA lifecycle annotations or make annotations configurable #3297 - UnusedMethod: Support additional exempting method annotations #3428 - Have InvalidParam support records #3437 - Fix -XepDisableAllWarnings flag when passed on its own #3462 - ASTHelpersSuggestions does not flag call to packge() on com.sun.tools.javac.code.Symbol.ClassSymbol #3482 - @SupressWarnings on record compact constructor causes crash [#3494] * Changes of version 2.16.0: + New Checkers: ASTHelpersSuggestions, CanIgnoreReturnValueSuggester, LenientFormatStringValidation, UnnecessarilyUsedValue + Fixed issues: - Avoid using non-ASCII Unicode characters outside of comments and literals #3092 - NullPointerException thrown during analysis #3220 - NPE analysing new style switch statement (2.14.0) #3225 - ImmutableChecker handles null types #3267 - Drop pre-JDK 11 logic from Refaster's Inliner class #3441 * Changes of version 2.15.0: + New Checkers: BuilderReturnThis, CanIgnoreReturnValueSuggester, CannotMockFinalClass, CannotMockFinalMethod, DirectInvocationOnMock, ExtendsObject, MockNotUsedInProduction, NoCanIgnoreReturnValueOnClasses, NullArgumentForNonNullParameter, SelfAlwaysReturnsThis, UnsafeWildcard, UnusedTypeParameter * Changes of version 2.14.0: + New checkers: BanJNDI, EmptyTopLevelDeclaration, ErroneousBitwiseExpression, FuzzyEqualsShouldNotBeUsedInEqualsMethod, Interruption, NullableOnContainingClass * Changes of version 2.13.1: + Fix a crash in UnnecessaryBoxedVariable + Include the unicode character in the diagnostic message * Changes of version 2.13.0: + Handle all annotations with the simple name Generated in - XepDisableWarningsInGeneratedCode + Reconcile BugChecker#isSuppressed with suppression handling in ErrorProneScanner + Fix a bug in enclosingPackage + Improve performance of fix application + Implicitly treat @AutoBuilder setter methods as @CanIgnoreReturnValue. + Remove some obsolete checks (PublicConstructorForAbstractClass, HashCodeToString) * Changes of version 2.12.1: + This release adds an infrastructure optimization to AppliedFix source code processing. * Changes of version 2.12.0: + New checks: BoxedPrimitiveEquality, DoubleBraceInitialization, IgnoredPureGetter, LockOnBoxedPrimitive, IncorrectMainMethod, LongDoubleConversion, RobolectricShadowDirectlyOn, StaticAssignmentOfThrowable, UnnecessaryLongToIntConversion, Varifier- Do not require maven-javadoc-plugin that we don't use- Add _multibuild to define 2nd spec file as additional flavor. Eliminates the need for source package links in OBS.- Initial packaging of some error_prone artifacts version 2.11.0h04-ch1a 17332121052.26.1-150200.5.8.12.26.12.26.12.26.1google-errorproneannotations.jargoogle-errorprone-annotationsCOPYINGgoogle-errorprone-annotations.xmlgoogle-errorproneannotations.pom/usr/share/java//usr/share/java/google-errorprone//usr/share/licenses//usr/share/licenses/google-errorprone-annotations//usr/share/maven-metadata//usr/share/maven-poms//usr/share/maven-poms/google-errorprone/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:36622/SUSE_SLE-15-SP2_Update/c96cdcf3b8750c596dfe9fc34c400847-google-errorprone.SUSE_SLE-15-SP2_Update:google-errorprone-annotationsdrpmxz5noarch-suse-linuxdirectorygzip ERROR: Stdin has more than one entry--rest ignored (Zip archive data, at least v1.0 to extract Java archive data (JAR))ASCII textXML 1.0 document textPPPR^0Gg.Z= Kutf-87ba8af3f827d43450cb9c6f5d0f8aa8af795c08a19afa1ff979c3bc21b103d95? 7zXZ !t/c]"k%Vytl7ىa@*80eA'#ǸCK]knaXeMRC=/hȇtd欨j$B.lX\kgmHcf#:aƔPMZ¸84 萑VW$[jv[b<rϽB?>gAe'x / *>u;S#;@Y}lR~Ph>HFeMgζ`WX[abU٦LOc!>b4K"0vX=gU9SH[M'PB%g;8~ۜF')I GFTWl»<r6ЖwBhOP0%gGȢS}v"??K&\+zI-9B]6fҝ&T)ḙ٣S`euF(5Ob3R "& 32*Ԩ0q &б׶ YZ