From 13ac5b8481b71f3cedf66169100ca983a09cb460 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Wed, 1 Jan 2020 00:21:32 -0500 Subject: [PATCH] Checktyle. --- .../apache/commons/lang3/arch/Processor.java | 2 +- .../commons/lang3/compare/package-info.java | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 src/main/java/org/apache/commons/lang3/compare/package-info.java diff --git a/src/main/java/org/apache/commons/lang3/arch/Processor.java b/src/main/java/org/apache/commons/lang3/arch/Processor.java index 965c64186..563fefeb7 100644 --- a/src/main/java/org/apache/commons/lang3/arch/Processor.java +++ b/src/main/java/org/apache/commons/lang3/arch/Processor.java @@ -59,7 +59,7 @@ public class Processor { */ private final String label; - private Arch(final String label) { + Arch(final String label) { this.label = label; } diff --git a/src/main/java/org/apache/commons/lang3/compare/package-info.java b/src/main/java/org/apache/commons/lang3/compare/package-info.java new file mode 100644 index 000000000..1b313a03d --- /dev/null +++ b/src/main/java/org/apache/commons/lang3/compare/package-info.java @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Provides classes to work with the {@link java.lang.Comparable} and {@link java.util.Comparator} interfaces. + * + * @since 3.10 + */ +package org.apache.commons.lang3.compare;