You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/01/01 05:21:36 UTC

[commons-lang] branch master updated: Checktyle.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 13ac5b8  Checktyle.
13ac5b8 is described below

commit 13ac5b8481b71f3cedf66169100ca983a09cb460
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 1 00:21:32 2020 -0500

    Checktyle.
---
 .../org/apache/commons/lang3/arch/Processor.java   |  2 +-
 .../apache/commons/lang3/compare/package-info.java | 23 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletion(-)

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 965c641..563fefe 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 0000000..1b313a0
--- /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;