Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .baseline/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
<property name="max" value="120"/>
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://|\{@link"/>
</module>
<module name="SuppressWithPlainTextCommentFilter"> <!-- Suppression to prevent LineLength Check from flagging lines in Text-blocks -->
<property name="checkFormat" value="LineLength"/>
<property name="offCommentFormat" value="^.*&quot;&quot;&quot;\s*$"/>
<property name="onCommentFormat" value="^\s*&quot;&quot;&quot;\s*(?:[,;]|.+)$"/>
</module>
<module name="TreeWalker">
<module name="SuppressionCommentFilter"/> <!-- baseline-gradle: README.md -->
<module name="SuppressionCommentFilter">
Expand Down Expand Up @@ -407,7 +412,9 @@
<property name="allowMissingReturnTag" value="true"/>
<property name="allowedAnnotations" value="Override, Test"/>
</module>
<module name="JavadocStyle"/> <!-- Java Style Guide: Javadoc -->
<module name="JavadocStyle"><!-- Java Style Guide: Javadoc -->
<property name="checkFirstSentence" value="false"/>
</module>
<module name="JavadocTagContinuationIndentation"> <!-- Java Style Guide: At-clauses -->
<property name="offset" value="0"/>
</module>
Expand All @@ -432,9 +439,6 @@
<property name="format" value="^_?[a-z][a-zA-Z0-9]+$"/>
<message key="name.invalidPattern" value="Parameter name ''{0}'' must match pattern ''{1}''."/>
</module>
<module name="SummaryJavadocCheck"> <!-- Java Coding Guidelines: Javadoc -->
<property name="forbiddenSummaryFragments" value="^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"/>
</module>

<!-- Stricter checks end -->
</module>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
classpath 'com.palantir.javaformat:gradle-palantir-java-format:2.81.0'
classpath 'org.revapi:gradle-revapi:1.8.0'
classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:7.0.1'
classpath 'com.palantir.baseline:gradle-baseline-java:6.60.0'
classpath 'com.palantir.baseline:gradle-baseline-java:6.66.0'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:4.1.0'
classpath 'com.palantir.gradle.idea-configuration:gradle-idea-configuration:0.7.0'
classpath 'com.palantir.metricschema:gradle-metric-schema:0.33.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public void testConfigRefresh() throws Exception {
ClientConfiguration config2 = createTestConfig("http://localhost:" + server2.getPort());

Refreshable<ClientConfiguration> refreshableConfig = Refreshable.of(config1);
@SuppressWarnings("for-rollout:deprecation")
TestService proxy = JaxRsClient.create(
TestService.class, UserAgents.tryParse("agent"), new HostMetricsRegistry(), refreshableConfig);

Expand Down