Skip to content

Commit f588ec9

Browse files
Excavator: Upgrades Baseline to the latest version (#366)
1 parent 1c10862 commit f588ec9

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.baseline/checkstyle/checkstyle.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
<module name="NewlineAtEndOfFile"> <!-- Java Style Guide: Line ending: LF -->
1919
<property name="lineSeparator" value="lf"/>
2020
</module>
21-
<module name="RegexpHeader">
22-
<property name="header" value="^/\*$\n^ \* \(c\) Copyright \d{4} Palantir Technologies Inc\. All rights reserved\.$"/>
23-
<property name="fileExtensions" value=".java,.ts"/>
24-
</module>
2521
<module name="RegexpMultiline"> <!-- Development Practices: Writing good unit tests -->
2622
<property name="fileExtensions" value="java"/>
2723
<property name="format" value="@VisibleForTesting\s+(protected|public)"/>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:1.17.2'
1212
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1313
classpath 'com.netflix.nebula:nebula-publishing-plugin:17.0.5'
14-
classpath 'com.palantir.baseline:gradle-baseline-java:3.3.0'
14+
classpath 'com.palantir.baseline:gradle-baseline-java:3.4.2'
1515
}
1616
}
1717

preconditions/src/main/java/com/palantir/logsafe/Preconditions.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
/*
22
* (c) Copyright 2018 Palantir Technologies Inc. All rights reserved.
3-
* Adapted from Guava 21.0 under the Apache 2 license; original copyright below.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
415
*/
516

617
/*

0 commit comments

Comments
 (0)