From 8bc2677267a2fed87be4833044d00dcb5d74b887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=BD=E4=BA=BA=E9=9A=BE=E5=BD=93?= <1580166554@qq.com> Date: Thu, 22 Aug 2024 01:03:48 +0000 Subject: [PATCH 1/3] =?UTF-8?q?!1261=20=E5=9F=BA=E4=BA=8ESPFA=E7=AE=97?= =?UTF-8?q?=E6=B3=95=E5=AE=9E=E7=8E=B0=E6=9C=89=E5=90=91=E5=9B=BE=E7=BB=93?= =?UTF-8?q?=E6=9E=84=20*=20=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A=20*=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A=20*=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E4=BF=A1=E6=81=AF=20*=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=B4=9F=E7=8E=AF=E6=A3=80=E6=9F=A5=E7=9A=84=E5=88=A4=E6=96=AD?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=20=E5=BD=93=E5=8E=9F=E5=9B=BE=E4=B8=BA?= =?UTF-8?q?=E9=9D=9E=E8=81=94=E9=80=9A=E5=9B=BE=20=E4=BB=A5=E5=8F=8A?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E5=BC=80=E5=A7=8B=E8=8A=82=E7=82=B9=E5=8F=AF?= =?UTF-8?q?=E8=A7=A6=E8=BE=BE=E8=8A=82=E7=82=B9=E5=B0=8F=E4=BA=8E=E6=80=BB?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E6=95=B0=20=E6=88=96=E8=80=85=E7=8E=AF?= =?UTF-8?q?=E8=B7=AF=E8=B7=AF=E6=AE=B5=E8=BE=83=E7=9F=AD=E6=97=B6=20?= =?UTF-8?q?=E6=89=80=E9=9C=80=E8=A6=81=E5=BE=AA=E7=8E=AF=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E7=9A=84=E6=AC=A1=E6=95=B0=20*=20Merge=20branch=20'v6-dev'=20o?= =?UTF-8?q?f=20https://gitee.com/hrnd/hutool=20into=20v6-dev=20*=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8D=95=E5=85=83=E6=B5=8B=E8=AF=95=20*=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=85=A5=E9=98=9FSLF=E4=BC=98=E5=8C=96=20*?= =?UTF-8?q?=20=E6=9C=89=E5=90=91=E5=9B=BE=20=E5=9F=BA=E4=BA=8ESPFA=20?= =?UTF-8?q?=E7=AE=97=E6=B3=95=E5=AE=9E=E7=8E=B0=20*=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B=20*=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B=20*=20Merge=20branch=20'v6?= =?UTF-8?q?-dev'=20of=20https://gitee.com/hrnd/hutool=20into=20v6-dev=20*?= =?UTF-8?q?=20=E5=AE=9E=E7=8E=B0=E6=9C=89=E5=90=91=E5=9B=BE=EF=BC=8C?= =?UTF-8?q?=E6=8F=90=E4=BE=9B=E6=9C=80=E7=9F=AD=E8=B7=AF=E5=BE=84=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/map/multi/DirectedWeightGraph.java | 294 ++++++++++++++++++ .../core/map/DirectedWeightGraphTest.java | 55 ++++ 2 files changed, 349 insertions(+) create mode 100644 hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java create mode 100644 hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java new file mode 100644 index 000000000..196a7616e --- /dev/null +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java @@ -0,0 +1,294 @@ +package org.dromara.hutool.core.map.multi; + +import java.util.*; + +/** + * 权重有向图 + * 基于 SPFA 算法实现 可以处理负边 可以进行负权环路检查 + * + * @author NewshiJ + * @date 2024/8/16 09:01 + */ +public class DirectedWeightGraph { + + // 全部节点 + private final Set allPoints = new HashSet<>(); + + // 邻接边 + private final Map>> neighborEdgeMap = new HashMap<>(); + + /** + * 添加边 + * @param fromPoint 开始点 + * @param nextPoint 结束点 + * @param weight 权重 + */ + public void putEdge(T fromPoint, T nextPoint, long weight) { + allPoints.add(fromPoint); + allPoints.add(nextPoint); + Map> nextPointMap = neighborEdgeMap.computeIfAbsent(fromPoint, k -> new HashMap<>()); + nextPointMap.put(nextPoint, new Edge<>(fromPoint, nextPoint, weight)); + } + + /** + * 删除边 + * @param fromPoint + * @param nextPoint + */ + public void removeEdge(T fromPoint, T nextPoint) { + Map> nextPointMap = neighborEdgeMap.computeIfAbsent(fromPoint, k -> new HashMap<>()); + nextPointMap.remove(nextPoint); + + // 重新计算 所有点位 + allPoints.clear(); + neighborEdgeMap.forEach((f,m) -> { + allPoints.add(f); + m.forEach((t,e) -> { + allPoints.add(t); + }); + }); + } + + /** + * 删除点 + * @param point + */ + public void removePoint(T point){ + allPoints.remove(point); + neighborEdgeMap.remove(point); + neighborEdgeMap.forEach((f,m) -> { + m.remove(point); + }); + } + + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + neighborEdgeMap.forEach((from,edgeMap) -> { + edgeMap.forEach((to,edge) -> { + builder.append(edge); + builder.append("\r\n"); + }); + }); + return builder.toString(); + } + + + /** + * 计算 从 startPoint 到 所有点 最短路径 + * 基于 SPFA 算法实现 + * + * @param startPoint 开始节点 + * @throws NegativeRingException 存在负权环路 + * @return 最佳路径集合 如果无可触达顶点 返回空 map + */ + public Map> bestPathMap(T startPoint) throws NegativeRingException{ + // 全部节点数量 + int pointSize = allPoints.size(); + // 待访问队列 + LinkedList pointQueue = new LinkedList<>(); + // 待访问队列中的节点 加速判断 + HashSet inQueuePoints = new HashSet<>(); + // 最佳路径集合 + HashMap> bestPathMap = new HashMap<>(); + + + Map> map = neighborEdgeMap.get(startPoint); + // 无可触达路径 + if(map == null || map.isEmpty()){ + return new HashMap<>(); + } + + map.forEach((to,edge) -> { + Path path = new Path<>(edge); + bestPathMap.put(to, path); + pointQueue.add(to); + inQueuePoints.add(to); + }); + + + while (!pointQueue.isEmpty()){ + // 当前节点 开始对 currentPoint 进行扩展 + T currentPoint = pointQueue.removeFirst(); + // 到当前节点的最短路径 + Path currentPath = bestPathMap.get(currentPoint); + // 标记已出队列 + inQueuePoints.remove(currentPoint); + + Map> edgeMap = neighborEdgeMap.get(currentPoint); + if(edgeMap == null){ + continue; + } + + // 扩展当前点的边 + Set>> entrySet = edgeMap.entrySet(); + for (Map.Entry> entry : entrySet) { + T nextPoint = entry.getKey(); + Edge edge = entry.getValue(); + + // 不存在路径 第一次访问 将当前路径放置到 bestPathMap 中 + Path oldPath = bestPathMap.get(nextPoint); + if(oldPath == null){ + Path nextPath = currentPath.nextPoint(edge); + bestPathMap.put(nextPoint,nextPath); + + // 不在队列里就入队 + if(!inQueuePoints.contains(nextPoint)){ + inQueuePoints.add(nextPoint); + + // SLF优化 入队优化 + // 每次出队进行判断扩展出的点与队头元素进行判断,若小于进队头,否则入队尾 + // 尽可能的让 负环路 上的节点 先进入队列头 + if(pointQueue.isEmpty()){ + pointQueue.addLast(nextPoint); + continue; + } + T first = pointQueue.getFirst(); + Path fristPath = bestPathMap.get(first); + if(nextPath.weight < fristPath.weight){ + pointQueue.addFirst(nextPoint); + }else { + pointQueue.add(nextPoint); + } + } + continue; + } + + long newWeight = currentPath.weight + edge.weight; + // 新路径更糟糕 没有优化的必要 + if(newWeight >= oldPath.weight){ + continue; + } + + // 更新最佳路径 如果下一跳没有在队列中 将下一跳放到队列里 + Path nextPath = currentPath.nextPoint(edge); + bestPathMap.put(nextPoint,nextPath); + // 不在队列里就入队 + if(!inQueuePoints.contains(nextPoint)){ + inQueuePoints.add(nextPoint); + + // SLF优化 入队优化 + // 每次出队进行判断扩展出的点与队头元素进行判断,若小于进队头,否则入队尾 + // 尽可能的让 负环路 上的节点 先进入队列头 + if(pointQueue.isEmpty()){ + pointQueue.addLast(nextPoint); + continue; + } + T first = pointQueue.getFirst(); + Path fristPath = bestPathMap.get(first); + if(nextPath.weight < fristPath.weight){ + pointQueue.addFirst(nextPoint); + }else { + pointQueue.addLast(nextPoint); + } + } + } + } + return bestPathMap; + } + + + /** + * 边 + * @param + */ + public static class Edge { + // 起始点 + public T fromPoint; + // 目标点 + public T nextPoint; + // 权重 + public long weight; + + public Edge(T fromPoint, T nextPoint, long weight) { + this.fromPoint = fromPoint; + this.nextPoint = nextPoint; + this.weight = weight; + } + + @Override + public String toString() { + return fromPoint + "->" + nextPoint + "(" + weight + ")"; + } + } + + public static class Path { + // 开始节点 + public T startPoint; + // 结束节点 + public T endPoint; + + /** + * 道路 即依次按照顺序经过的边 + */ + public LinkedList> way = new LinkedList<>(); + + /** + * 已经经过的点 如果 有一个点已经多次经过了 可以判定已经成环 + * 当源图是一个非联通图时 或者 开始节点处于图路径中下游时 或者 成环路经过的节点数量较少时 + * 使用判断节点经过次数与全部节点数量进行比较会有冗余判断 + * 用成环判断 可以加速这种情况 是针对一些特殊的图结构优化了最差情况 + */ + public Set passedPoints = new HashSet<>(); + + // 总权重 + public long weight; + + public Path(Edge edge){ + startPoint = edge.fromPoint; + endPoint = edge.nextPoint; + way.add(edge); + weight = edge.weight; + passedPoints.add(edge.fromPoint); + passedPoints.add(edge.nextPoint); + } + public Path(){} + + /** + * 生成下一跳 + * @param edge + * @throws NegativeRingException 负环路 + * @return + */ + public Path nextPoint(Edge edge) throws NegativeRingException { + Path nextPath = new Path<>(); + nextPath.startPoint = startPoint; + nextPath.endPoint = edge.nextPoint; + nextPath.way.addAll(way); + nextPath.way.add(edge); + nextPath.weight = weight + edge.weight; + nextPath.passedPoints.addAll(passedPoints); + + // 负环检查 + if(nextPath.passedPoints.contains(edge.nextPoint)){ + throw new NegativeRingException("路径:" + nextPath + "存在负环路"); + } + + nextPath.passedPoints.add(edge.nextPoint); + return nextPath; + } + + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append(String.format("[%s->%s(%d)] ", startPoint, endPoint, weight)); + for (Edge edge : way) { + builder.append(edge); + builder.append(" "); + } + return builder.toString(); + } + } + + /** + * 负环异常 + */ + public static class NegativeRingException extends Exception { + public NegativeRingException(String msg){ + super(msg); + } + } +} + + + diff --git a/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java b/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java new file mode 100644 index 000000000..083dd5861 --- /dev/null +++ b/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java @@ -0,0 +1,55 @@ +package org.dromara.hutool.core.map; + +import org.dromara.hutool.core.map.multi.DirectedWeightGraph; +import org.junit.jupiter.api.Test; + +import java.util.List; +import java.util.Map; + +/** + * @author newshiJ + * @date 2024/8/14 17:07 + */ +public class DirectedWeightGraphTest { + + @Test + public void test1(){ + DirectedWeightGraph graph = new DirectedWeightGraph<>(); + graph.putEdge("A", "B", 14); + graph.putEdge("A", "C", 8); + graph.putEdge("A", "D", 12); + +// graph.putEdge("B", "A", -14); + graph.putEdge("B", "E", 4); + + graph.putEdge("C", "B", 3); + graph.putEdge("C", "D", 5); + graph.putEdge("C", "E", 5); + graph.putEdge("C", "F", 6); + + graph.putEdge("D", "F", 7); + +// graph.putEdge("E", "B", -14); + graph.putEdge("E", "G", 4); + + graph.putEdge("G", "B", -9); + + graph.putEdge("F", "G", 2); + + graph.putEdge("X", "Y", 2); + + graph.removePoint("X"); + + System.out.println(graph); + Map> map = null; + try { + map = graph.bestPathMap("A"); + map.forEach((k,v) -> { + System.out.println(v); + }); + } catch (DirectedWeightGraph.NegativeRingException e) { + e.printStackTrace(); + } + + } +} From 41dc63b580ee8434c1042c917c5167a391d15c5e Mon Sep 17 00:00:00 2001 From: Looly Date: Thu, 22 Aug 2024 12:05:18 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8DCopyOptions.setFieldValue?= =?UTF-8?q?Editor=E5=90=8E=E7=94=9F=E6=88=90null=E5=80=BCsetIgnoreNullValu?= =?UTF-8?q?e=E6=97=A0=E6=95=88=E9=97=AE=E9=A2=98\?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/bean/copier/MapToMapCopier.java | 9 +- .../core/map/multi/DirectedWeightGraph.java | 226 +++++++++++------- .../core/bean/copier/Issue3702Test.java | 41 ++++ .../core/map/DirectedWeightGraphTest.java | 12 +- 4 files changed, 187 insertions(+), 101 deletions(-) create mode 100644 hutool-core/src/test/java/org/dromara/hutool/core/bean/copier/Issue3702Test.java diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java index c7ff20a28..a5996e729 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java @@ -66,10 +66,6 @@ public class MapToMapCopier extends AbsCopier { return; } sValue = entry.getValue(); - // 忽略空值 - if (copyOptions.ignoreNullValue && sValue == null) { - return; - } final Object targetValue = target.get(sKey); // 非覆盖模式下,如果目标值存在,则跳过 @@ -83,6 +79,11 @@ public class MapToMapCopier extends AbsCopier { sValue = this.copyOptions.convertField(typeArguments[1], sValue); } + // 忽略空值 + if (copyOptions.ignoreNullValue && sValue == null) { + return; + } + // 目标赋值 target.put(sKey, sValue); }); diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java index 196a7616e..9bc942394 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java @@ -1,13 +1,15 @@ package org.dromara.hutool.core.map.multi; +import org.dromara.hutool.core.exception.HutoolException; + import java.util.*; /** * 权重有向图 * 基于 SPFA 算法实现 可以处理负边 可以进行负权环路检查 * + * @param 点对象类型 * @author NewshiJ - * @date 2024/8/16 09:01 */ public class DirectedWeightGraph { @@ -15,35 +17,46 @@ public class DirectedWeightGraph { private final Set allPoints = new HashSet<>(); // 邻接边 - private final Map>> neighborEdgeMap = new HashMap<>(); + private final Map>> neighborEdgeMap = new HashMap<>(); + + /** + * 获取全部点 + * + * @return 全部点 + */ + public Set getAllPoints() { + return allPoints; + } /** * 添加边 + * * @param fromPoint 开始点 * @param nextPoint 结束点 - * @param weight 权重 + * @param weight 权重 */ - public void putEdge(T fromPoint, T nextPoint, long weight) { + public void putEdge(final T fromPoint, final T nextPoint, final long weight) { allPoints.add(fromPoint); allPoints.add(nextPoint); - Map> nextPointMap = neighborEdgeMap.computeIfAbsent(fromPoint, k -> new HashMap<>()); + final Map> nextPointMap = neighborEdgeMap.computeIfAbsent(fromPoint, k -> new HashMap<>()); nextPointMap.put(nextPoint, new Edge<>(fromPoint, nextPoint, weight)); } /** * 删除边 - * @param fromPoint - * @param nextPoint + * + * @param fromPoint 开始点 + * @param nextPoint 结束点 */ - public void removeEdge(T fromPoint, T nextPoint) { - Map> nextPointMap = neighborEdgeMap.computeIfAbsent(fromPoint, k -> new HashMap<>()); + public void removeEdge(final T fromPoint, final T nextPoint) { + final Map> nextPointMap = neighborEdgeMap.computeIfAbsent(fromPoint, k -> new HashMap<>()); nextPointMap.remove(nextPoint); // 重新计算 所有点位 allPoints.clear(); - neighborEdgeMap.forEach((f,m) -> { + neighborEdgeMap.forEach((f, m) -> { allPoints.add(f); - m.forEach((t,e) -> { + m.forEach((t, e) -> { allPoints.add(t); }); }); @@ -51,21 +64,22 @@ public class DirectedWeightGraph { /** * 删除点 - * @param point + * + * @param point 点 */ - public void removePoint(T point){ + public void removePoint(final T point) { allPoints.remove(point); neighborEdgeMap.remove(point); - neighborEdgeMap.forEach((f,m) -> { + neighborEdgeMap.forEach((f, m) -> { m.remove(point); }); } @Override public String toString() { - StringBuilder builder = new StringBuilder(); - neighborEdgeMap.forEach((from,edgeMap) -> { - edgeMap.forEach((to,edge) -> { + final StringBuilder builder = new StringBuilder(); + neighborEdgeMap.forEach((from, edgeMap) -> { + edgeMap.forEach((to, edge) -> { builder.append(edge); builder.append("\r\n"); }); @@ -79,106 +93,106 @@ public class DirectedWeightGraph { * 基于 SPFA 算法实现 * * @param startPoint 开始节点 - * @throws NegativeRingException 存在负权环路 * @return 最佳路径集合 如果无可触达顶点 返回空 map + * @throws NegativeRingException 存在负权环路 */ - public Map> bestPathMap(T startPoint) throws NegativeRingException{ + public Map> bestPathMap(final T startPoint) throws NegativeRingException { // 全部节点数量 - int pointSize = allPoints.size(); + //final int pointSize = allPoints.size(); // 待访问队列 - LinkedList pointQueue = new LinkedList<>(); + final LinkedList pointQueue = new LinkedList<>(); // 待访问队列中的节点 加速判断 - HashSet inQueuePoints = new HashSet<>(); + final HashSet inQueuePoints = new HashSet<>(); // 最佳路径集合 - HashMap> bestPathMap = new HashMap<>(); + final HashMap> bestPathMap = new HashMap<>(); - Map> map = neighborEdgeMap.get(startPoint); + final Map> map = neighborEdgeMap.get(startPoint); // 无可触达路径 - if(map == null || map.isEmpty()){ + if (map == null || map.isEmpty()) { return new HashMap<>(); } - map.forEach((to,edge) -> { - Path path = new Path<>(edge); + map.forEach((to, edge) -> { + final Path path = new Path<>(edge); bestPathMap.put(to, path); pointQueue.add(to); inQueuePoints.add(to); }); - while (!pointQueue.isEmpty()){ + while (!pointQueue.isEmpty()) { // 当前节点 开始对 currentPoint 进行扩展 - T currentPoint = pointQueue.removeFirst(); + final T currentPoint = pointQueue.removeFirst(); // 到当前节点的最短路径 - Path currentPath = bestPathMap.get(currentPoint); + final Path currentPath = bestPathMap.get(currentPoint); // 标记已出队列 inQueuePoints.remove(currentPoint); - Map> edgeMap = neighborEdgeMap.get(currentPoint); - if(edgeMap == null){ + final Map> edgeMap = neighborEdgeMap.get(currentPoint); + if (edgeMap == null) { continue; } // 扩展当前点的边 - Set>> entrySet = edgeMap.entrySet(); - for (Map.Entry> entry : entrySet) { - T nextPoint = entry.getKey(); - Edge edge = entry.getValue(); + final Set>> entrySet = edgeMap.entrySet(); + for (final Map.Entry> entry : entrySet) { + final T nextPoint = entry.getKey(); + final Edge edge = entry.getValue(); // 不存在路径 第一次访问 将当前路径放置到 bestPathMap 中 - Path oldPath = bestPathMap.get(nextPoint); - if(oldPath == null){ - Path nextPath = currentPath.nextPoint(edge); - bestPathMap.put(nextPoint,nextPath); + final Path oldPath = bestPathMap.get(nextPoint); + if (oldPath == null) { + final Path nextPath = currentPath.nextPoint(edge); + bestPathMap.put(nextPoint, nextPath); // 不在队列里就入队 - if(!inQueuePoints.contains(nextPoint)){ + if (!inQueuePoints.contains(nextPoint)) { inQueuePoints.add(nextPoint); // SLF优化 入队优化 // 每次出队进行判断扩展出的点与队头元素进行判断,若小于进队头,否则入队尾 // 尽可能的让 负环路 上的节点 先进入队列头 - if(pointQueue.isEmpty()){ + if (pointQueue.isEmpty()) { pointQueue.addLast(nextPoint); continue; } - T first = pointQueue.getFirst(); - Path fristPath = bestPathMap.get(first); - if(nextPath.weight < fristPath.weight){ + final T first = pointQueue.getFirst(); + final Path fristPath = bestPathMap.get(first); + if (nextPath.weight < fristPath.weight) { pointQueue.addFirst(nextPoint); - }else { + } else { pointQueue.add(nextPoint); } } continue; } - long newWeight = currentPath.weight + edge.weight; + final long newWeight = currentPath.weight + edge.weight; // 新路径更糟糕 没有优化的必要 - if(newWeight >= oldPath.weight){ + if (newWeight >= oldPath.weight) { continue; } // 更新最佳路径 如果下一跳没有在队列中 将下一跳放到队列里 - Path nextPath = currentPath.nextPoint(edge); - bestPathMap.put(nextPoint,nextPath); + final Path nextPath = currentPath.nextPoint(edge); + bestPathMap.put(nextPoint, nextPath); // 不在队列里就入队 - if(!inQueuePoints.contains(nextPoint)){ + if (!inQueuePoints.contains(nextPoint)) { inQueuePoints.add(nextPoint); // SLF优化 入队优化 // 每次出队进行判断扩展出的点与队头元素进行判断,若小于进队头,否则入队尾 // 尽可能的让 负环路 上的节点 先进入队列头 - if(pointQueue.isEmpty()){ + if (pointQueue.isEmpty()) { pointQueue.addLast(nextPoint); continue; } - T first = pointQueue.getFirst(); - Path fristPath = bestPathMap.get(first); - if(nextPath.weight < fristPath.weight){ + final T first = pointQueue.getFirst(); + final Path fristPath = bestPathMap.get(first); + if (nextPath.weight < fristPath.weight) { pointQueue.addFirst(nextPoint); - }else { + } else { pointQueue.addLast(nextPoint); } } @@ -190,89 +204,112 @@ public class DirectedWeightGraph { /** * 边 - * @param + * + * @param 点类型 */ public static class Edge { // 起始点 - public T fromPoint; + protected T fromPoint; // 目标点 - public T nextPoint; + protected T toPoint; // 权重 - public long weight; + protected long weight; - public Edge(T fromPoint, T nextPoint, long weight) { + /** + * 构造 + */ + public Edge() { + } + + /** + * 构造 + * + * @param fromPoint 起始点 + * @param toPoint 目标点 + * @param weight 权重 + */ + public Edge(final T fromPoint, final T toPoint, final long weight) { this.fromPoint = fromPoint; - this.nextPoint = nextPoint; + this.toPoint = toPoint; this.weight = weight; } @Override public String toString() { - return fromPoint + "->" + nextPoint + "(" + weight + ")"; + return fromPoint + "->" + toPoint + "(" + weight + ")"; } } - public static class Path { - // 开始节点 - public T startPoint; - // 结束节点 - public T endPoint; + /** + * 路径 + * + * @param 点类型 + */ + public static class Path extends Edge { /** * 道路 即依次按照顺序经过的边 */ - public LinkedList> way = new LinkedList<>(); - + private final LinkedList> way = new LinkedList<>(); /** * 已经经过的点 如果 有一个点已经多次经过了 可以判定已经成环 * 当源图是一个非联通图时 或者 开始节点处于图路径中下游时 或者 成环路经过的节点数量较少时 * 使用判断节点经过次数与全部节点数量进行比较会有冗余判断 * 用成环判断 可以加速这种情况 是针对一些特殊的图结构优化了最差情况 */ - public Set passedPoints = new HashSet<>(); + private final Set passedPoints = new HashSet<>(); - // 总权重 - public long weight; + /** + * 构造 + */ + public Path() { + super(); + } - public Path(Edge edge){ - startPoint = edge.fromPoint; - endPoint = edge.nextPoint; + /** + * 构造 + * + * @param edge 边 + */ + public Path(final Edge edge) { + this.fromPoint = edge.fromPoint; + this.toPoint = edge.toPoint; way.add(edge); weight = edge.weight; passedPoints.add(edge.fromPoint); - passedPoints.add(edge.nextPoint); + passedPoints.add(edge.toPoint); } - public Path(){} /** * 生成下一跳 - * @param edge + * + * @param edge 边 + * @return 下一跳 * @throws NegativeRingException 负环路 - * @return */ - public Path nextPoint(Edge edge) throws NegativeRingException { - Path nextPath = new Path<>(); - nextPath.startPoint = startPoint; - nextPath.endPoint = edge.nextPoint; + public Path nextPoint(final Edge edge) throws NegativeRingException { + final Path nextPath = new Path<>(); + nextPath.fromPoint = fromPoint; + nextPath.toPoint = edge.toPoint; nextPath.way.addAll(way); nextPath.way.add(edge); nextPath.weight = weight + edge.weight; nextPath.passedPoints.addAll(passedPoints); // 负环检查 - if(nextPath.passedPoints.contains(edge.nextPoint)){ + if (nextPath.passedPoints.contains(edge.toPoint)) { throw new NegativeRingException("路径:" + nextPath + "存在负环路"); } - nextPath.passedPoints.add(edge.nextPoint); + nextPath.passedPoints.add(edge.toPoint); return nextPath; } @Override public String toString() { - StringBuilder builder = new StringBuilder(); - builder.append(String.format("[%s->%s(%d)] ", startPoint, endPoint, weight)); - for (Edge edge : way) { + final StringBuilder builder = new StringBuilder(); + builder.append(String.format("[%s->%s(%d)] ", fromPoint, toPoint, weight)); + for (final Edge edge : way) { builder.append(edge); builder.append(" "); } @@ -283,8 +320,15 @@ public class DirectedWeightGraph { /** * 负环异常 */ - public static class NegativeRingException extends Exception { - public NegativeRingException(String msg){ + public static class NegativeRingException extends HutoolException { + private static final long serialVersionUID = 1L; + + /** + * 构造 + * + * @param msg 消息 + */ + public NegativeRingException(final String msg) { super(msg); } } diff --git a/hutool-core/src/test/java/org/dromara/hutool/core/bean/copier/Issue3702Test.java b/hutool-core/src/test/java/org/dromara/hutool/core/bean/copier/Issue3702Test.java new file mode 100644 index 000000000..04bd294bb --- /dev/null +++ b/hutool-core/src/test/java/org/dromara/hutool/core/bean/copier/Issue3702Test.java @@ -0,0 +1,41 @@ +package org.dromara.hutool.core.bean.copier; + +import org.dromara.hutool.core.bean.BeanUtil; +import org.dromara.hutool.core.util.ObjUtil; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; + +import java.util.HashMap; +import java.util.Map; + +/** + * setFieldValueEditor编辑后的值理应继续判断ignoreNullValue + */ +public class Issue3702Test { + @Test + void mapToMapTest() { + final Map map= new HashMap<>(); + map.put("a",""); + map.put("b","b"); + map.put("c","c"); + map.put("d","d"); + + final Map map2= new HashMap<>(); + map2.put("a","a1"); + map2.put("b","b1"); + map2.put("c","c1"); + map2.put("d","d1"); + + final CopyOptions option= CopyOptions.of() + .setIgnoreNullValue(true) + .setIgnoreError(true) + .setFieldEditor((entry)->{ + if(ObjUtil.equals(entry.getValue(), "")){ + entry.setValue(null); + } + return entry; + }); + BeanUtil.copyProperties(map,map2,option); + Assertions.assertEquals("{a=a1, b=b, c=c, d=d}", map2.toString()); + } +} diff --git a/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java b/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java index 083dd5861..5d5bc42fc 100644 --- a/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java +++ b/hutool-core/src/test/java/org/dromara/hutool/core/map/DirectedWeightGraphTest.java @@ -1,20 +1,20 @@ package org.dromara.hutool.core.map; import org.dromara.hutool.core.map.multi.DirectedWeightGraph; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; -import java.util.List; import java.util.Map; /** * @author newshiJ - * @date 2024/8/14 17:07 */ public class DirectedWeightGraphTest { @Test - public void test1(){ - DirectedWeightGraph graph = new DirectedWeightGraph<>(); + @Disabled + public void test1() { + final DirectedWeightGraph graph = new DirectedWeightGraph<>(); graph.putEdge("A", "B", 14); graph.putEdge("A", "C", 8); graph.putEdge("A", "D", 12); @@ -44,10 +44,10 @@ public class DirectedWeightGraphTest { Map> map = null; try { map = graph.bestPathMap("A"); - map.forEach((k,v) -> { + map.forEach((k, v) -> { System.out.println(v); }); - } catch (DirectedWeightGraph.NegativeRingException e) { + } catch (final DirectedWeightGraph.NegativeRingException e) { e.printStackTrace(); } From 9163963d49f5cc55fbaab06119ae07d172057266 Mon Sep 17 00:00:00 2001 From: Looly Date: Thu, 22 Aug 2024 20:40:54 +0800 Subject: [PATCH 3/3] update copyright --- .../src/main/java/org/dromara/hutool/Hutool.java | 2 +- .../java/org/dromara/hutool/package-info.java | 2 +- .../dromara/hutool/core/annotation/Alias.java | 2 +- .../core/annotation/AnnotatedElementUtil.java | 2 +- .../core/annotation/AnnotationMapping.java | 2 +- .../core/annotation/AnnotationMappingProxy.java | 2 +- .../hutool/core/annotation/AnnotationProxy.java | 2 +- .../hutool/core/annotation/AnnotationUtil.java | 2 +- .../annotation/GenericAnnotationMapping.java | 2 +- .../hutool/core/annotation/PropIgnore.java | 2 +- .../RepeatableAnnotationCollector.java | 2 +- .../annotation/ResolvedAnnotationMapping.java | 2 +- .../elements/CombinationAnnotatedElement.java | 2 +- .../elements/HierarchicalAnnotatedElements.java | 2 +- .../elements/MetaAnnotatedElement.java | 2 +- .../elements/RepeatableMetaAnnotatedElement.java | 2 +- .../core/annotation/elements/package-info.java | 2 +- .../hutool/core/annotation/package-info.java | 2 +- .../org/dromara/hutool/core/array/ArrayUtil.java | 2 +- .../dromara/hutool/core/array/ArrayWrapper.java | 2 +- .../hutool/core/array/PrimitiveArrayUtil.java | 2 +- .../dromara/hutool/core/array/package-info.java | 2 +- .../org/dromara/hutool/core/bean/BeanDesc.java | 2 +- .../hutool/core/bean/BeanDescFactory.java | 2 +- .../dromara/hutool/core/bean/BeanException.java | 2 +- .../dromara/hutool/core/bean/BeanInfoCache.java | 2 +- .../org/dromara/hutool/core/bean/BeanUtil.java | 2 +- .../org/dromara/hutool/core/bean/DynaBean.java | 2 +- .../hutool/core/bean/NullWrapperBean.java | 2 +- .../org/dromara/hutool/core/bean/PropDesc.java | 2 +- .../dromara/hutool/core/bean/RecordBeanDesc.java | 2 +- .../org/dromara/hutool/core/bean/RecordUtil.java | 2 +- .../dromara/hutool/core/bean/SimpleBeanDesc.java | 2 +- .../dromara/hutool/core/bean/StrictBeanDesc.java | 2 +- .../hutool/core/bean/copier/AbsCopier.java | 2 +- .../hutool/core/bean/copier/BeanCopier.java | 2 +- .../core/bean/copier/BeanToBeanCopier.java | 2 +- .../hutool/core/bean/copier/BeanToMapCopier.java | 2 +- .../hutool/core/bean/copier/CopyOptions.java | 2 +- .../hutool/core/bean/copier/MapToBeanCopier.java | 2 +- .../hutool/core/bean/copier/MapToMapCopier.java | 2 +- .../hutool/core/bean/copier/ValueProvider.java | 2 +- .../bean/copier/ValueProviderToBeanCopier.java | 2 +- .../hutool/core/bean/copier/package-info.java | 2 +- .../bean/copier/provider/BeanValueProvider.java | 2 +- .../copier/provider/DynaBeanValueProvider.java | 2 +- .../bean/copier/provider/MapValueProvider.java | 2 +- .../core/bean/copier/provider/package-info.java | 2 +- .../dromara/hutool/core/bean/package-info.java | 2 +- .../hutool/core/bean/path/AbstractBeanDesc.java | 2 +- .../dromara/hutool/core/bean/path/BeanPath.java | 2 +- .../hutool/core/bean/path/node/EmptyNode.java | 2 +- .../hutool/core/bean/path/node/ListNode.java | 2 +- .../hutool/core/bean/path/node/NameNode.java | 2 +- .../dromara/hutool/core/bean/path/node/Node.java | 2 +- .../hutool/core/bean/path/node/NodeFactory.java | 2 +- .../hutool/core/bean/path/node/RangeNode.java | 2 +- .../hutool/core/bean/path/node/package-info.java | 2 +- .../hutool/core/bean/path/package-info.java | 2 +- .../org/dromara/hutool/core/cache/Cache.java | 2 +- .../dromara/hutool/core/cache/CacheListener.java | 2 +- .../org/dromara/hutool/core/cache/CacheUtil.java | 2 +- .../hutool/core/cache/GlobalPruneTimer.java | 2 +- .../dromara/hutool/core/cache/SimpleCache.java | 2 +- .../core/cache/file/AbstractFileCache.java | 2 +- .../hutool/core/cache/file/LFUFileCache.java | 2 +- .../hutool/core/cache/file/LRUFileCache.java | 2 +- .../hutool/core/cache/file/package-info.java | 2 +- .../hutool/core/cache/impl/AbstractCache.java | 2 +- .../dromara/hutool/core/cache/impl/CacheObj.java | 2 +- .../hutool/core/cache/impl/CacheObjIterator.java | 2 +- .../core/cache/impl/CacheValuesIterator.java | 2 +- .../hutool/core/cache/impl/FIFOCache.java | 2 +- .../dromara/hutool/core/cache/impl/LFUCache.java | 2 +- .../dromara/hutool/core/cache/impl/LRUCache.java | 2 +- .../dromara/hutool/core/cache/impl/NoCache.java | 2 +- .../hutool/core/cache/impl/ReentrantCache.java | 2 +- .../hutool/core/cache/impl/StampedCache.java | 2 +- .../hutool/core/cache/impl/TimedCache.java | 2 +- .../hutool/core/cache/impl/WeakCache.java | 2 +- .../hutool/core/cache/impl/package-info.java | 2 +- .../dromara/hutool/core/cache/package-info.java | 2 +- .../hutool/core/classloader/ClassLoaderUtil.java | 2 +- .../hutool/core/classloader/JarClassLoader.java | 2 +- .../core/classloader/ResourceClassLoader.java | 2 +- .../hutool/core/classloader/package-info.java | 2 +- .../org/dromara/hutool/core/codec/Caesar.java | 2 +- .../org/dromara/hutool/core/codec/Decoder.java | 2 +- .../org/dromara/hutool/core/codec/Encoder.java | 2 +- .../org/dromara/hutool/core/codec/Hashids.java | 2 +- .../java/org/dromara/hutool/core/codec/Luhn.java | 2 +- .../org/dromara/hutool/core/codec/Morse.java | 2 +- .../org/dromara/hutool/core/codec/Number128.java | 2 +- .../dromara/hutool/core/codec/PercentCodec.java | 2 +- .../org/dromara/hutool/core/codec/PunyCode.java | 2 +- .../org/dromara/hutool/core/codec/RadixUtil.java | 2 +- .../java/org/dromara/hutool/core/codec/Rot.java | 2 +- .../hutool/core/codec/binary/Base16Codec.java | 2 +- .../dromara/hutool/core/codec/binary/Base32.java | 2 +- .../hutool/core/codec/binary/Base32Codec.java | 2 +- .../dromara/hutool/core/codec/binary/Base58.java | 2 +- .../hutool/core/codec/binary/Base58Codec.java | 2 +- .../dromara/hutool/core/codec/binary/Base62.java | 2 +- .../hutool/core/codec/binary/Base62Codec.java | 2 +- .../dromara/hutool/core/codec/binary/Base64.java | 2 +- .../hutool/core/codec/binary/Base64Decoder.java | 2 +- .../core/codec/binary/CrockfordBase32Codec.java | 2 +- .../dromara/hutool/core/codec/binary/Hex.java | 2 +- .../hutool/core/codec/binary/HexUtil.java | 2 +- .../hutool/core/codec/binary/Z85Codec.java | 2 +- .../hutool/core/codec/binary/package-info.java | 2 +- .../dromara/hutool/core/codec/hash/CityHash.java | 2 +- .../hutool/core/codec/hash/ConsistentHash.java | 2 +- .../dromara/hutool/core/codec/hash/Hash128.java | 2 +- .../dromara/hutool/core/codec/hash/Hash32.java | 2 +- .../dromara/hutool/core/codec/hash/Hash64.java | 2 +- .../dromara/hutool/core/codec/hash/HashUtil.java | 2 +- .../hutool/core/codec/hash/KetamaHash.java | 2 +- .../hutool/core/codec/hash/MurmurHash.java | 2 +- .../dromara/hutool/core/codec/hash/Simhash.java | 2 +- .../core/codec/hash/metro/AbstractMetroHash.java | 2 +- .../hutool/core/codec/hash/metro/MetroHash.java | 2 +- .../core/codec/hash/metro/MetroHash128.java | 2 +- .../core/codec/hash/metro/MetroHash64.java | 2 +- .../core/codec/hash/metro/package-info.java | 2 +- .../hutool/core/codec/hash/package-info.java | 2 +- .../dromara/hutool/core/codec/package-info.java | 2 +- .../core/collection/BoundedCollection.java | 2 +- .../hutool/core/collection/BoundedList.java | 2 +- .../hutool/core/collection/CollStreamUtil.java | 2 +- .../dromara/hutool/core/collection/CollUtil.java | 2 +- .../core/collection/CollectionOperation.java | 2 +- .../core/collection/ConcurrentHashSet.java | 2 +- .../dromara/hutool/core/collection/ListUtil.java | 2 +- .../hutool/core/collection/ListWrapper.java | 2 +- .../hutool/core/collection/RingIndexUtil.java | 2 +- .../hutool/core/collection/SpliteratorUtil.java | 2 +- .../hutool/core/collection/TransCollection.java | 2 +- .../hutool/core/collection/TransSpliterator.java | 2 +- .../hutool/core/collection/iter/ArrayIter.java | 2 +- .../hutool/core/collection/iter/ComputeIter.java | 2 +- .../hutool/core/collection/iter/CopiedIter.java | 2 +- .../core/collection/iter/EnumerationIter.java | 2 +- .../hutool/core/collection/iter/FilterIter.java | 2 +- .../hutool/core/collection/iter/IterChain.java | 2 +- .../hutool/core/collection/iter/IterUtil.java | 2 +- .../core/collection/iter/IterableIter.java | 2 +- .../collection/iter/IteratorEnumeration.java | 2 +- .../hutool/core/collection/iter/LineIter.java | 2 +- .../core/collection/iter/NodeListIter.java | 2 +- .../core/collection/iter/PartitionIter.java | 2 +- .../core/collection/iter/ResettableIter.java | 2 +- .../hutool/core/collection/iter/TransIter.java | 2 +- .../core/collection/iter/package-info.java | 2 +- .../hutool/core/collection/package-info.java | 2 +- .../core/collection/partition/AvgPartition.java | 2 +- .../core/collection/partition/Partition.java | 2 +- .../partition/RandomAccessAvgPartition.java | 2 +- .../partition/RandomAccessPartition.java | 2 +- .../core/collection/partition/package-info.java | 2 +- .../collection/queue/BoundedPriorityQueue.java | 2 +- .../queue/CheckedLinkedBlockingQueue.java | 2 +- .../core/collection/queue/DiscardingQueue.java | 2 +- .../hutool/core/collection/queue/Linked.java | 2 +- .../core/collection/queue/LinkedDeque.java | 2 +- .../queue/MemorySafeLinkedBlockingQueue.java | 2 +- .../core/collection/queue/package-info.java | 2 +- .../hutool/core/collection/set/SetFromMap.java | 2 +- .../hutool/core/collection/set/SetUtil.java | 2 +- .../hutool/core/collection/set/SetWrapper.java | 2 +- .../hutool/core/collection/set/UniqueKeySet.java | 2 +- .../hutool/core/collection/set/package-info.java | 2 +- .../core/comparator/ArrayIndexedComparator.java | 2 +- .../hutool/core/comparator/ComparatorChain.java | 2 +- .../core/comparator/ComparatorException.java | 2 +- .../hutool/core/comparator/CompareUtil.java | 2 +- .../hutool/core/comparator/FieldComparator.java | 2 +- .../hutool/core/comparator/FieldsComparator.java | 2 +- .../hutool/core/comparator/FuncComparator.java | 2 +- .../core/comparator/IndexedComparator.java | 2 +- .../core/comparator/InstanceComparator.java | 2 +- .../hutool/core/comparator/LocaleComparator.java | 2 +- .../hutool/core/comparator/NullComparator.java | 2 +- .../hutool/core/comparator/PinyinComparator.java | 2 +- .../core/comparator/PropertyComparator.java | 2 +- .../core/comparator/StrLengthComparator.java | 2 +- .../core/comparator/VersionComparator.java | 2 +- .../WindowsExplorerStringComparator.java | 2 +- .../hutool/core/comparator/package-info.java | 2 +- .../dromara/hutool/core/compress/Deflate.java | 2 +- .../org/dromara/hutool/core/compress/Gzip.java | 2 +- .../core/compress/InflaterInputStream.java | 2 +- .../hutool/core/compress/OpcZipOutputStream.java | 2 +- .../org/dromara/hutool/core/compress/Zip64.java | 2 +- .../hutool/core/compress/ZipCopyVisitor.java | 2 +- .../hutool/core/compress/ZipFileResource.java | 2 +- .../dromara/hutool/core/compress/ZipReader.java | 2 +- .../hutool/core/compress/ZipReplacer.java | 2 +- .../hutool/core/compress/ZipResource.java | 2 +- .../hutool/core/compress/ZipSecurityUtil.java | 2 +- .../hutool/core/compress/ZipStreamResource.java | 2 +- .../dromara/hutool/core/compress/ZipUtil.java | 2 +- .../dromara/hutool/core/compress/ZipWriter.java | 2 +- .../hutool/core/compress/package-info.java | 2 +- .../hutool/core/convert/AbstractConverter.java | 2 +- .../dromara/hutool/core/convert/BasicType.java | 2 +- .../dromara/hutool/core/convert/CastUtil.java | 2 +- .../hutool/core/convert/CompositeConverter.java | 2 +- .../org/dromara/hutool/core/convert/Convert.java | 2 +- .../hutool/core/convert/ConvertException.java | 2 +- .../dromara/hutool/core/convert/Converter.java | 2 +- .../hutool/core/convert/RegisterConverter.java | 2 +- .../hutool/core/convert/impl/ArrayConverter.java | 2 +- .../convert/impl/AtomicBooleanConverter.java | 2 +- .../impl/AtomicIntegerArrayConverter.java | 2 +- .../convert/impl/AtomicLongArrayConverter.java | 2 +- .../convert/impl/AtomicReferenceConverter.java | 2 +- .../hutool/core/convert/impl/BeanConverter.java | 2 +- .../core/convert/impl/BooleanConverter.java | 2 +- .../core/convert/impl/CalendarConverter.java | 2 +- .../hutool/core/convert/impl/CastConverter.java | 2 +- .../core/convert/impl/CharacterConverter.java | 2 +- .../core/convert/impl/CharsetConverter.java | 2 +- .../hutool/core/convert/impl/ClassConverter.java | 2 +- .../core/convert/impl/CollectionConverter.java | 2 +- .../core/convert/impl/CurrencyConverter.java | 2 +- .../hutool/core/convert/impl/DateConverter.java | 2 +- .../core/convert/impl/DurationConverter.java | 2 +- .../hutool/core/convert/impl/EntryConverter.java | 2 +- .../hutool/core/convert/impl/EnumConverter.java | 2 +- .../hutool/core/convert/impl/KBeanConverter.java | 2 +- .../core/convert/impl/LocaleConverter.java | 2 +- .../hutool/core/convert/impl/MapConverter.java | 2 +- .../core/convert/impl/NumberConverter.java | 2 +- .../hutool/core/convert/impl/OptConverter.java | 2 +- .../core/convert/impl/OptionalConverter.java | 2 +- .../hutool/core/convert/impl/PairConverter.java | 2 +- .../hutool/core/convert/impl/PathConverter.java | 2 +- .../core/convert/impl/PeriodConverter.java | 2 +- .../core/convert/impl/PrimitiveConverter.java | 2 +- .../core/convert/impl/RecordConverter.java | 2 +- .../core/convert/impl/ReferenceConverter.java | 2 +- .../convert/impl/StackTraceElementConverter.java | 2 +- .../core/convert/impl/StringConverter.java | 2 +- .../convert/impl/TemporalAccessorConverter.java | 2 +- .../core/convert/impl/TimeZoneConverter.java | 2 +- .../core/convert/impl/TripleConverter.java | 2 +- .../hutool/core/convert/impl/TupleConverter.java | 2 +- .../hutool/core/convert/impl/URIConverter.java | 2 +- .../hutool/core/convert/impl/URLConverter.java | 2 +- .../hutool/core/convert/impl/UUIDConverter.java | 2 +- .../impl/XMLGregorianCalendarConverter.java | 2 +- .../core/convert/impl/ZoneIdConverter.java | 2 +- .../hutool/core/convert/impl/package-info.java | 2 +- .../core/convert/impl/stringer/BlobStringer.java | 2 +- .../core/convert/impl/stringer/ClobStringer.java | 2 +- .../core/convert/impl/stringer/package-info.java | 2 +- .../hutool/core/convert/package-info.java | 2 +- .../java/org/dromara/hutool/core/data/CIN.java | 2 +- .../java/org/dromara/hutool/core/data/CIN10.java | 2 +- .../dromara/hutool/core/data/CoordinateUtil.java | 2 +- .../dromara/hutool/core/data/CreditCodeUtil.java | 2 +- .../org/dromara/hutool/core/data/IdcardUtil.java | 2 +- .../dromara/hutool/core/data/MaskingUtil.java | 2 +- .../dromara/hutool/core/data/PasswdStrength.java | 2 +- .../org/dromara/hutool/core/data/PhoneUtil.java | 2 +- .../java/org/dromara/hutool/core/data/VIN.java | 2 +- .../dromara/hutool/core/data/id/IdConstants.java | 2 +- .../org/dromara/hutool/core/data/id/IdUtil.java | 2 +- .../org/dromara/hutool/core/data/id/NanoId.java | 2 +- .../dromara/hutool/core/data/id/ObjectId.java | 2 +- .../hutool/core/data/id/ObjectIdGenerator.java | 2 +- .../org/dromara/hutool/core/data/id/Pid.java | 2 +- .../hutool/core/data/id/SeataSnowflake.java | 2 +- .../dromara/hutool/core/data/id/Snowflake.java | 2 +- .../org/dromara/hutool/core/data/id/ULID.java | 2 +- .../hutool/core/data/id/ULIDGenerator.java | 2 +- .../org/dromara/hutool/core/data/id/UUID.java | 2 +- .../hutool/core/data/id/UUIDGenerator.java | 2 +- .../hutool/core/data/id/package-info.java | 2 +- .../dromara/hutool/core/data/package-info.java | 2 +- .../hutool/core/date/BetweenFormatter.java | 2 +- .../dromara/hutool/core/date/CalendarUtil.java | 2 +- .../dromara/hutool/core/date/DateBetween.java | 2 +- .../dromara/hutool/core/date/DateBuilder.java | 2 +- .../dromara/hutool/core/date/DateException.java | 2 +- .../org/dromara/hutool/core/date/DateField.java | 2 +- .../dromara/hutool/core/date/DateModifier.java | 2 +- .../dromara/hutool/core/date/DatePattern.java | 2 +- .../org/dromara/hutool/core/date/DateRange.java | 2 +- .../org/dromara/hutool/core/date/DateTime.java | 2 +- .../org/dromara/hutool/core/date/DateUnit.java | 2 +- .../org/dromara/hutool/core/date/DateUtil.java | 2 +- .../dromara/hutool/core/date/LocalTimeUtil.java | 2 +- .../java/org/dromara/hutool/core/date/Month.java | 2 +- .../org/dromara/hutool/core/date/Quarter.java | 2 +- .../dromara/hutool/core/date/SqlDateUtil.java | 2 +- .../org/dromara/hutool/core/date/StopWatch.java | 2 +- .../dromara/hutool/core/date/SystemClock.java | 2 +- .../hutool/core/date/TemporalAccessorUtil.java | 2 +- .../dromara/hutool/core/date/TemporalUtil.java | 2 +- .../org/dromara/hutool/core/date/TimeUtil.java | 2 +- .../java/org/dromara/hutool/core/date/Week.java | 2 +- .../org/dromara/hutool/core/date/Zodiac.java | 2 +- .../org/dromara/hutool/core/date/ZoneUtil.java | 2 +- .../hutool/core/date/chinese/ChineseDate.java | 2 +- .../core/date/chinese/ChineseDateFormat.java | 2 +- .../hutool/core/date/chinese/ChineseMonth.java | 2 +- .../dromara/hutool/core/date/chinese/GanZhi.java | 2 +- .../hutool/core/date/chinese/LunarFestival.java | 2 +- .../hutool/core/date/chinese/LunarInfo.java | 2 +- .../hutool/core/date/chinese/ShiChen.java | 2 +- .../hutool/core/date/chinese/SolarTerms.java | 2 +- .../hutool/core/date/chinese/package-info.java | 2 +- .../hutool/core/date/format/DateBasic.java | 2 +- .../hutool/core/date/format/DatePrinter.java | 2 +- .../core/date/format/DefaultDateBasic.java | 2 +- .../hutool/core/date/format/FastDateFormat.java | 2 +- .../hutool/core/date/format/FastDatePrinter.java | 2 +- .../hutool/core/date/format/FormatCache.java | 2 +- .../core/date/format/GlobalCustomFormat.java | 2 +- .../hutool/core/date/format/SimpleDateBasic.java | 2 +- .../hutool/core/date/format/package-info.java | 2 +- .../core/date/format/parser/DateParser.java | 2 +- .../format/parser/DefaultRegexDateParser.java | 2 +- .../core/date/format/parser/FastDateParser.java | 2 +- .../date/format/parser/PatternsDateParser.java | 2 +- .../date/format/parser/PositionDateParser.java | 2 +- .../date/format/parser/PredicateDateParser.java | 2 +- .../core/date/format/parser/RegexDateParser.java | 2 +- .../date/format/parser/RegisterDateParser.java | 2 +- .../core/date/format/parser/TimeParser.java | 2 +- .../core/date/format/parser/package-info.java | 2 +- .../dromara/hutool/core/date/package-info.java | 2 +- .../hutool/core/exception/CloneException.java | 2 +- .../core/exception/DependencyException.java | 2 +- .../hutool/core/exception/ExceptionUtil.java | 2 +- .../hutool/core/exception/HutoolException.java | 2 +- .../hutool/core/exception/StatefulException.java | 2 +- .../hutool/core/exception/ValidateException.java | 2 +- .../hutool/core/exception/package-info.java | 2 +- .../hutool/core/func/ComposeFunction.java | 2 +- .../dromara/hutool/core/func/FunctionPool.java | 2 +- .../dromara/hutool/core/func/LambdaFactory.java | 2 +- .../org/dromara/hutool/core/func/LambdaInfo.java | 2 +- .../org/dromara/hutool/core/func/LambdaUtil.java | 2 +- .../hutool/core/func/PredicateUnaryOperator.java | 2 +- .../dromara/hutool/core/func/PredicateUtil.java | 2 +- .../dromara/hutool/core/func/SerBiConsumer.java | 2 +- .../dromara/hutool/core/func/SerBiFunction.java | 2 +- .../dromara/hutool/core/func/SerBiPredicate.java | 2 +- .../hutool/core/func/SerBinaryOperator.java | 2 +- .../dromara/hutool/core/func/SerConsumer.java | 2 +- .../dromara/hutool/core/func/SerConsumer3.java | 2 +- .../dromara/hutool/core/func/SerFunction.java | 2 +- .../dromara/hutool/core/func/SerPredicate.java | 2 +- .../dromara/hutool/core/func/SerRunnable.java | 2 +- .../dromara/hutool/core/func/SerSupplier.java | 2 +- .../hutool/core/func/SerUnaryOperator.java | 2 +- .../dromara/hutool/core/func/package-info.java | 2 +- .../dromara/hutool/core/io/AppendableWriter.java | 2 +- .../org/dromara/hutool/core/io/BomReader.java | 2 +- .../dromara/hutool/core/io/ByteOrderMark.java | 2 +- .../dromara/hutool/core/io/CharsetDetector.java | 2 +- .../hutool/core/io/CircularByteBuffer.java | 2 +- .../dromara/hutool/core/io/FastStringReader.java | 2 +- .../dromara/hutool/core/io/FastStringWriter.java | 2 +- .../hutool/core/io/IORuntimeException.java | 2 +- .../java/org/dromara/hutool/core/io/IoUtil.java | 2 +- .../org/dromara/hutool/core/io/LineReader.java | 2 +- .../org/dromara/hutool/core/io/ManifestUtil.java | 2 +- .../java/org/dromara/hutool/core/io/NioUtil.java | 2 +- .../dromara/hutool/core/io/ReaderWrapper.java | 2 +- .../dromara/hutool/core/io/SerializeUtil.java | 2 +- .../dromara/hutool/core/io/StreamProgress.java | 2 +- .../hutool/core/io/buffer/BufferUtil.java | 2 +- .../hutool/core/io/buffer/FastByteBuffer.java | 2 +- .../hutool/core/io/buffer/package-info.java | 2 +- .../dromara/hutool/core/io/checksum/CRC16.java | 2 +- .../dromara/hutool/core/io/checksum/CRC8.java | 2 +- .../hutool/core/io/checksum/ChecksumUtil.java | 2 +- .../hutool/core/io/checksum/crc16/CRC16Ansi.java | 2 +- .../core/io/checksum/crc16/CRC16CCITT.java | 2 +- .../core/io/checksum/crc16/CRC16CCITTFalse.java | 2 +- .../core/io/checksum/crc16/CRC16Checksum.java | 2 +- .../hutool/core/io/checksum/crc16/CRC16DNP.java | 2 +- .../hutool/core/io/checksum/crc16/CRC16IBM.java | 2 +- .../core/io/checksum/crc16/CRC16Maxim.java | 2 +- .../core/io/checksum/crc16/CRC16Modbus.java | 2 +- .../hutool/core/io/checksum/crc16/CRC16USB.java | 2 +- .../hutool/core/io/checksum/crc16/CRC16X25.java | 2 +- .../core/io/checksum/crc16/CRC16XModem.java | 2 +- .../core/io/checksum/crc16/package-info.java | 2 +- .../hutool/core/io/checksum/package-info.java | 2 +- .../hutool/core/io/copy/ChannelCopier.java | 2 +- .../hutool/core/io/copy/FileChannelCopier.java | 2 +- .../dromara/hutool/core/io/copy/IoCopier.java | 2 +- .../hutool/core/io/copy/ReaderWriterCopier.java | 2 +- .../hutool/core/io/copy/StreamCopier.java | 2 +- .../hutool/core/io/copy/package-info.java | 2 +- .../hutool/core/io/file/FileAppender.java | 2 +- .../hutool/core/io/file/FileMagicNumber.java | 2 +- .../dromara/hutool/core/io/file/FileMode.java | 2 +- .../hutool/core/io/file/FileNameUtil.java | 2 +- .../dromara/hutool/core/io/file/FileReader.java | 2 +- .../hutool/core/io/file/FileSystemUtil.java | 2 +- .../hutool/core/io/file/FileTypeUtil.java | 2 +- .../dromara/hutool/core/io/file/FileUtil.java | 2 +- .../dromara/hutool/core/io/file/FileWrapper.java | 2 +- .../dromara/hutool/core/io/file/FileWriter.java | 2 +- .../hutool/core/io/file/LineReadWatcher.java | 2 +- .../hutool/core/io/file/LineSeparator.java | 2 +- .../dromara/hutool/core/io/file/PathCopier.java | 2 +- .../dromara/hutool/core/io/file/PathDeleter.java | 2 +- .../dromara/hutool/core/io/file/PathMover.java | 2 +- .../dromara/hutool/core/io/file/PathUtil.java | 2 +- .../org/dromara/hutool/core/io/file/Tailer.java | 2 +- .../hutool/core/io/file/package-info.java | 2 +- .../hutool/core/io/file/visitor/CopyVisitor.java | 2 +- .../hutool/core/io/file/visitor/DelVisitor.java | 2 +- .../hutool/core/io/file/visitor/MoveVisitor.java | 2 +- .../core/io/file/visitor/package-info.java | 2 +- .../org/dromara/hutool/core/io/package-info.java | 2 +- .../hutool/core/io/resource/BytesResource.java | 2 +- .../core/io/resource/CharSequenceResource.java | 2 +- .../core/io/resource/ClassPathResource.java | 2 +- .../core/io/resource/FileObjectResource.java | 2 +- .../hutool/core/io/resource/FileResource.java | 2 +- .../hutool/core/io/resource/HttpResource.java | 2 +- .../core/io/resource/InputStreamResource.java | 2 +- .../hutool/core/io/resource/JarResource.java | 2 +- .../core/io/resource/MultiFileResource.java | 2 +- .../hutool/core/io/resource/MultiResource.java | 2 +- .../core/io/resource/NoResourceException.java | 2 +- .../hutool/core/io/resource/Resource.java | 2 +- .../hutool/core/io/resource/ResourceFinder.java | 2 +- .../hutool/core/io/resource/ResourceUtil.java | 2 +- .../hutool/core/io/resource/StringResource.java | 2 +- .../hutool/core/io/resource/UrlResource.java | 2 +- .../hutool/core/io/resource/VfsResource.java | 2 +- .../hutool/core/io/resource/WebAppResource.java | 2 +- .../hutool/core/io/resource/package-info.java | 2 +- .../hutool/core/io/stream/BOMInputStream.java | 2 +- .../hutool/core/io/stream/EmptyInputStream.java | 2 +- .../hutool/core/io/stream/EmptyOutputStream.java | 2 +- .../io/stream/FastByteArrayOutputStream.java | 2 +- .../core/io/stream/LimitedInputStream.java | 2 +- .../hutool/core/io/stream/LineCounter.java | 2 +- .../hutool/core/io/stream/ReaderInputStream.java | 2 +- .../hutool/core/io/stream/StrInputStream.java | 2 +- .../hutool/core/io/stream/StreamReader.java | 2 +- .../hutool/core/io/stream/StreamWriter.java | 2 +- .../hutool/core/io/stream/SyncInputStream.java | 2 +- .../io/stream/ValidateObjectInputStream.java | 2 +- .../core/io/stream/WriterOutputStream.java | 2 +- .../hutool/core/io/stream/package-info.java | 2 +- .../dromara/hutool/core/io/unit/DataSize.java | 2 +- .../hutool/core/io/unit/DataSizeUtil.java | 2 +- .../dromara/hutool/core/io/unit/DataUnit.java | 2 +- .../hutool/core/io/unit/package-info.java | 2 +- .../hutool/core/io/watch/WatchException.java | 2 +- .../dromara/hutool/core/io/watch/WatchKind.java | 2 +- .../hutool/core/io/watch/WatchMonitor.java | 2 +- .../core/io/watch/WatchServiceWrapper.java | 2 +- .../dromara/hutool/core/io/watch/WatchUtil.java | 2 +- .../dromara/hutool/core/io/watch/Watcher.java | 2 +- .../hutool/core/io/watch/package-info.java | 2 +- .../core/io/watch/watchers/DelayWatcher.java | 2 +- .../core/io/watch/watchers/SimpleWatcher.java | 2 +- .../core/io/watch/watchers/WatcherChain.java | 2 +- .../core/io/watch/watchers/package-info.java | 2 +- .../org/dromara/hutool/core/lang/Assert.java | 2 +- .../java/org/dromara/hutool/core/lang/Chain.java | 2 +- .../org/dromara/hutool/core/lang/Console.java | 2 +- .../dromara/hutool/core/lang/ConsoleTable.java | 2 +- .../org/dromara/hutool/core/lang/EnumItem.java | 2 +- .../java/org/dromara/hutool/core/lang/Opt.java | 2 +- .../org/dromara/hutool/core/lang/Singleton.java | 2 +- .../org/dromara/hutool/core/lang/Validator.java | 2 +- .../org/dromara/hutool/core/lang/Version.java | 2 +- .../core/lang/ansi/Ansi4BitBackgroundColor.java | 2 +- .../hutool/core/lang/ansi/Ansi4BitColor.java | 2 +- .../hutool/core/lang/ansi/Ansi8BitColor.java | 2 +- .../hutool/core/lang/ansi/AnsiElement.java | 2 +- .../hutool/core/lang/ansi/AnsiEncoder.java | 2 +- .../dromara/hutool/core/lang/ansi/AnsiStyle.java | 2 +- .../hutool/core/lang/ansi/package-info.java | 2 +- .../hutool/core/lang/builder/Builder.java | 2 +- .../hutool/core/lang/builder/GenericBuilder.java | 2 +- .../hutool/core/lang/builder/package-info.java | 2 +- .../dromara/hutool/core/lang/caller/Caller.java | 2 +- .../hutool/core/lang/caller/CallerUtil.java | 2 +- .../core/lang/caller/SecurityManagerCaller.java | 2 +- .../core/lang/caller/StackTraceCaller.java | 2 +- .../hutool/core/lang/caller/package-info.java | 2 +- .../dromara/hutool/core/lang/copier/Copier.java | 2 +- .../core/lang/copier/SrcToTargetCopier.java | 2 +- .../hutool/core/lang/copier/package-info.java | 2 +- .../hutool/core/lang/generator/Generator.java | 2 +- .../core/lang/generator/ObjectGenerator.java | 2 +- .../hutool/core/lang/generator/package-info.java | 2 +- .../core/lang/getter/GroupedTypeGetter.java | 2 +- .../hutool/core/lang/getter/TypeGetter.java | 2 +- .../hutool/core/lang/getter/package-info.java | 2 +- .../dromara/hutool/core/lang/intern/Intern.java | 2 +- .../hutool/core/lang/intern/InternUtil.java | 2 +- .../hutool/core/lang/intern/StringIntern.java | 2 +- .../hutool/core/lang/intern/WeakIntern.java | 2 +- .../hutool/core/lang/intern/package-info.java | 2 +- .../hutool/core/lang/loader/AtomicLoader.java | 2 +- .../hutool/core/lang/loader/LazyFunLoader.java | 2 +- .../hutool/core/lang/loader/LazyLoader.java | 2 +- .../dromara/hutool/core/lang/loader/Loader.java | 2 +- .../hutool/core/lang/loader/package-info.java | 2 +- .../hutool/core/lang/mutable/Mutable.java | 2 +- .../hutool/core/lang/mutable/MutableBool.java | 2 +- .../hutool/core/lang/mutable/MutableByte.java | 2 +- .../hutool/core/lang/mutable/MutableDouble.java | 2 +- .../hutool/core/lang/mutable/MutableEntry.java | 2 +- .../hutool/core/lang/mutable/MutableFloat.java | 2 +- .../hutool/core/lang/mutable/MutableInt.java | 2 +- .../hutool/core/lang/mutable/MutableLong.java | 2 +- .../hutool/core/lang/mutable/MutableObj.java | 2 +- .../hutool/core/lang/mutable/MutablePair.java | 2 +- .../hutool/core/lang/mutable/MutableShort.java | 2 +- .../hutool/core/lang/mutable/MutableTriple.java | 2 +- .../hutool/core/lang/mutable/package-info.java | 2 +- .../dromara/hutool/core/lang/package-info.java | 2 +- .../hutool/core/lang/page/NavigatePageInfo.java | 2 +- .../dromara/hutool/core/lang/page/PageInfo.java | 2 +- .../hutool/core/lang/page/package-info.java | 2 +- .../dromara/hutool/core/lang/range/Bound.java | 2 +- .../hutool/core/lang/range/BoundType.java | 2 +- .../hutool/core/lang/range/BoundedRange.java | 2 +- .../core/lang/range/BoundedRangeOperation.java | 2 +- .../hutool/core/lang/range/DefaultSegment.java | 2 +- .../hutool/core/lang/range/FiniteBound.java | 2 +- .../hutool/core/lang/range/NoneLowerBound.java | 2 +- .../hutool/core/lang/range/NoneUpperBound.java | 2 +- .../dromara/hutool/core/lang/range/Range.java | 2 +- .../dromara/hutool/core/lang/range/Segment.java | 2 +- .../hutool/core/lang/range/package-info.java | 2 +- .../dromara/hutool/core/lang/ref/PhantomObj.java | 2 +- .../org/dromara/hutool/core/lang/ref/Ref.java | 2 +- .../hutool/core/lang/ref/ReferenceType.java | 2 +- .../hutool/core/lang/ref/ReferenceUtil.java | 2 +- .../dromara/hutool/core/lang/ref/SoftObj.java | 2 +- .../dromara/hutool/core/lang/ref/StrongObj.java | 2 +- .../dromara/hutool/core/lang/ref/WeakObj.java | 2 +- .../hutool/core/lang/ref/package-info.java | 2 +- .../core/lang/selector/IncrementSelector.java | 2 +- .../core/lang/selector/RandomSelector.java | 2 +- .../hutool/core/lang/selector/Selector.java | 2 +- .../core/lang/selector/SmoothWeightObj.java | 2 +- .../core/lang/selector/SmoothWeightSelector.java | 2 +- .../hutool/core/lang/selector/WeightObj.java | 2 +- .../core/lang/selector/WeightRandomSelector.java | 2 +- .../hutool/core/lang/selector/package-info.java | 2 +- .../org/dromara/hutool/core/lang/tuple/Pair.java | 2 +- .../dromara/hutool/core/lang/tuple/Triple.java | 2 +- .../dromara/hutool/core/lang/tuple/Tuple.java | 2 +- .../hutool/core/lang/tuple/package-info.java | 2 +- .../hutool/core/lang/wrapper/SimpleWrapper.java | 2 +- .../hutool/core/lang/wrapper/Wrapper.java | 2 +- .../hutool/core/lang/wrapper/package-info.java | 2 +- .../org/dromara/hutool/core/map/AbsEntry.java | 2 +- .../java/org/dromara/hutool/core/map/BiMap.java | 2 +- .../hutool/core/map/CamelCaseLinkedMap.java | 2 +- .../dromara/hutool/core/map/CamelCaseMap.java | 2 +- .../core/map/CaseInsensitiveLinkedMap.java | 2 +- .../hutool/core/map/CaseInsensitiveMap.java | 2 +- .../hutool/core/map/CaseInsensitiveTreeMap.java | 2 +- .../dromara/hutool/core/map/CustomKeyMap.java | 2 +- .../java/org/dromara/hutool/core/map/Dict.java | 2 +- .../hutool/core/map/FixedLinkedHashMap.java | 2 +- .../org/dromara/hutool/core/map/ForestMap.java | 2 +- .../org/dromara/hutool/core/map/FuncKeyMap.java | 2 +- .../org/dromara/hutool/core/map/FuncMap.java | 2 +- .../dromara/hutool/core/map/LinkedForestMap.java | 2 +- .../org/dromara/hutool/core/map/MapBuilder.java | 2 +- .../org/dromara/hutool/core/map/MapGetUtil.java | 2 +- .../org/dromara/hutool/core/map/MapJoiner.java | 2 +- .../org/dromara/hutool/core/map/MapProxy.java | 2 +- .../org/dromara/hutool/core/map/MapUtil.java | 2 +- .../org/dromara/hutool/core/map/MapWrapper.java | 2 +- .../org/dromara/hutool/core/map/TableMap.java | 2 +- .../org/dromara/hutool/core/map/TolerantMap.java | 2 +- .../org/dromara/hutool/core/map/TransMap.java | 2 +- .../org/dromara/hutool/core/map/TreeEntry.java | 2 +- .../org/dromara/hutool/core/map/TripleTable.java | 2 +- .../map/concurrent/ConcurrentLinkedHashMap.java | 2 +- .../hutool/core/map/concurrent/EntryWeigher.java | 2 +- .../map/concurrent/SafeConcurrentHashMap.java | 2 +- .../hutool/core/map/concurrent/Weigher.java | 2 +- .../hutool/core/map/concurrent/Weighers.java | 2 +- .../hutool/core/map/concurrent/package-info.java | 2 +- .../hutool/core/map/multi/AbsCollValueMap.java | 2 +- .../dromara/hutool/core/map/multi/AbsTable.java | 2 +- .../core/map/multi/CollectionValueMap.java | 2 +- .../core/map/multi/DirectedWeightGraph.java | 16 ++++++++++++++++ .../org/dromara/hutool/core/map/multi/Graph.java | 2 +- .../hutool/core/map/multi/ListValueMap.java | 2 +- .../hutool/core/map/multi/MultiValueMap.java | 2 +- .../hutool/core/map/multi/RowKeyTable.java | 2 +- .../hutool/core/map/multi/SetValueMap.java | 2 +- .../org/dromara/hutool/core/map/multi/Table.java | 2 +- .../hutool/core/map/multi/package-info.java | 2 +- .../dromara/hutool/core/map/package-info.java | 2 +- .../map/reference/ReferenceConcurrentMap.java | 2 +- .../core/map/reference/SoftConcurrentMap.java | 2 +- .../core/map/reference/WeakConcurrentMap.java | 2 +- .../core/map/reference/WeakKeyConcurrentMap.java | 2 +- .../hutool/core/map/reference/package-info.java | 2 +- .../dromara/hutool/core/math/Arrangement.java | 2 +- .../dromara/hutool/core/math/BitStatusUtil.java | 2 +- .../org/dromara/hutool/core/math/Calculator.java | 2 +- .../hutool/core/math/ChineseNumberFormatter.java | 2 +- .../hutool/core/math/ChineseNumberParser.java | 2 +- .../dromara/hutool/core/math/Combination.java | 2 +- .../hutool/core/math/EnglishNumberFormatter.java | 2 +- .../org/dromara/hutool/core/math/MathUtil.java | 2 +- .../java/org/dromara/hutool/core/math/Money.java | 2 +- .../dromara/hutool/core/math/NumberParser.java | 2 +- .../org/dromara/hutool/core/math/NumberUtil.java | 2 +- .../hutool/core/math/NumberValidator.java | 2 +- .../hutool/core/math/RomanNumberFormatter.java | 2 +- .../dromara/hutool/core/math/package-info.java | 2 +- .../org/dromara/hutool/core/net/Ipv4Pool.java | 2 +- .../org/dromara/hutool/core/net/Ipv4Util.java | 2 +- .../org/dromara/hutool/core/net/Ipv6Util.java | 2 +- .../hutool/core/net/LocalPortGenerator.java | 2 +- .../dromara/hutool/core/net/MacAddressUtil.java | 2 +- .../org/dromara/hutool/core/net/MaskBit.java | 2 +- .../org/dromara/hutool/core/net/NetUtil.java | 2 +- .../hutool/core/net/ProxySocketFactory.java | 2 +- .../hutool/core/net/UserPassAuthenticator.java | 2 +- .../core/net/multipart/MultipartFormData.java | 2 +- .../multipart/MultipartRequestInputStream.java | 2 +- .../hutool/core/net/multipart/UploadFile.java | 2 +- .../core/net/multipart/UploadFileHeader.java | 2 +- .../hutool/core/net/multipart/UploadSetting.java | 2 +- .../hutool/core/net/multipart/package-info.java | 2 +- .../dromara/hutool/core/net/package-info.java | 2 +- .../hutool/core/net/ssl/KeyManagerUtil.java | 2 +- .../hutool/core/net/ssl/SSLContextBuilder.java | 2 +- .../hutool/core/net/ssl/SSLContextUtil.java | 2 +- .../hutool/core/net/ssl/SSLProtocols.java | 2 +- .../core/net/ssl/TrustAnyHostnameVerifier.java | 2 +- .../core/net/ssl/TrustAnyTrustManager.java | 2 +- .../hutool/core/net/ssl/TrustManagerUtil.java | 2 +- .../hutool/core/net/ssl/package-info.java | 2 +- .../hutool/core/net/url/FormUrlencoded.java | 2 +- .../org/dromara/hutool/core/net/url/RFC3986.java | 2 +- .../dromara/hutool/core/net/url/UrlBuilder.java | 2 +- .../dromara/hutool/core/net/url/UrlDecoder.java | 2 +- .../dromara/hutool/core/net/url/UrlEncoder.java | 2 +- .../org/dromara/hutool/core/net/url/UrlPath.java | 2 +- .../hutool/core/net/url/UrlProtocolUtil.java | 2 +- .../dromara/hutool/core/net/url/UrlQuery.java | 2 +- .../hutool/core/net/url/UrlQueryUtil.java | 2 +- .../org/dromara/hutool/core/net/url/UrlUtil.java | 2 +- .../hutool/core/net/url/package-info.java | 2 +- .../org/dromara/hutool/core/package-info.java | 2 +- .../dromara/hutool/core/pool/ObjectFactory.java | 2 +- .../org/dromara/hutool/core/pool/ObjectPool.java | 2 +- .../org/dromara/hutool/core/pool/PoolConfig.java | 2 +- .../dromara/hutool/core/pool/PoolException.java | 2 +- .../org/dromara/hutool/core/pool/Poolable.java | 2 +- .../dromara/hutool/core/pool/SimplePoolable.java | 2 +- .../dromara/hutool/core/pool/package-info.java | 2 +- .../core/pool/partition/PartitionObjectPool.java | 2 +- .../core/pool/partition/PartitionPoolConfig.java | 2 +- .../core/pool/partition/PartitionPoolable.java | 2 +- .../core/pool/partition/PoolPartition.java | 2 +- .../hutool/core/pool/partition/package-info.java | 2 +- .../core/reflect/ActualTypeMapperPool.java | 2 +- .../hutool/core/reflect/ClassDescUtil.java | 2 +- .../hutool/core/reflect/ClassScanner.java | 2 +- .../dromara/hutool/core/reflect/ClassUtil.java | 2 +- .../hutool/core/reflect/ConstructorUtil.java | 2 +- .../hutool/core/reflect/FieldReflect.java | 2 +- .../dromara/hutool/core/reflect/FieldUtil.java | 2 +- .../org/dromara/hutool/core/reflect/Invoker.java | 2 +- .../hutool/core/reflect/JdkProxyUtil.java | 2 +- .../hutool/core/reflect/ModifierType.java | 2 +- .../hutool/core/reflect/ModifierUtil.java | 2 +- .../dromara/hutool/core/reflect/NullType.java | 2 +- .../core/reflect/ParameterizedTypeImpl.java | 2 +- .../dromara/hutool/core/reflect/ReflectUtil.java | 2 +- .../hutool/core/reflect/TypeReference.java | 2 +- .../dromara/hutool/core/reflect/TypeUtil.java | 2 +- .../reflect/creator/DefaultObjectCreator.java | 2 +- .../core/reflect/creator/ObjectCreator.java | 2 +- .../reflect/creator/PossibleObjectCreator.java | 2 +- .../core/reflect/creator/package-info.java | 2 +- .../hutool/core/reflect/kotlin/KCallable.java | 2 +- .../hutool/core/reflect/kotlin/KClassImpl.java | 2 +- .../hutool/core/reflect/kotlin/KClassUtil.java | 2 +- .../hutool/core/reflect/kotlin/KParameter.java | 2 +- .../hutool/core/reflect/kotlin/package-info.java | 2 +- .../reflect/lookup/ConstructorLookupFactory.java | 2 +- .../core/reflect/lookup/LookupFactory.java | 2 +- .../hutool/core/reflect/lookup/LookupUtil.java | 2 +- .../core/reflect/lookup/MethodLookupFactory.java | 2 +- .../hutool/core/reflect/lookup/package-info.java | 2 +- .../core/reflect/method/MethodHandleUtil.java | 2 +- .../core/reflect/method/MethodInvoker.java | 2 +- .../core/reflect/method/MethodMatcherUtil.java | 2 +- .../core/reflect/method/MethodNameUtil.java | 2 +- .../core/reflect/method/MethodReflect.java | 2 +- .../core/reflect/method/MethodTypeUtil.java | 2 +- .../hutool/core/reflect/method/MethodUtil.java | 2 +- .../hutool/core/reflect/method/package-info.java | 2 +- .../hutool/core/reflect/package-info.java | 2 +- .../dromara/hutool/core/regex/PatternPool.java | 2 +- .../org/dromara/hutool/core/regex/ReUtil.java | 2 +- .../org/dromara/hutool/core/regex/RegexPool.java | 2 +- .../dromara/hutool/core/regex/package-info.java | 2 +- .../hutool/core/spi/AbsServiceLoader.java | 2 +- .../hutool/core/spi/JdkServiceLoaderUtil.java | 2 +- .../hutool/core/spi/ListServiceLoader.java | 2 +- .../hutool/core/spi/MapServiceLoader.java | 2 +- .../dromara/hutool/core/spi/ServiceLoader.java | 2 +- .../dromara/hutool/core/spi/SpiException.java | 2 +- .../org/dromara/hutool/core/spi/SpiUtil.java | 2 +- .../dromara/hutool/core/spi/package-info.java | 2 +- .../stream/AbstractEnhancedWrappedStream.java | 2 +- .../hutool/core/stream/CollectorUtil.java | 2 +- .../dromara/hutool/core/stream/EasyStream.java | 2 +- .../dromara/hutool/core/stream/EntryStream.java | 2 +- .../hutool/core/stream/SimpleCollector.java | 2 +- .../dromara/hutool/core/stream/StreamUtil.java | 2 +- .../core/stream/TerminableWrappedStream.java | 2 +- .../core/stream/TransformableWrappedStream.java | 2 +- .../hutool/core/stream/WrappedStream.java | 2 +- .../dromara/hutool/core/stream/package-info.java | 2 +- .../spliterators/DropWhileSpliterator.java | 2 +- .../stream/spliterators/IterateSpliterator.java | 2 +- .../spliterators/TakeWhileSpliterator.java | 2 +- .../core/stream/spliterators/package-info.java | 2 +- .../dromara/hutool/core/text/ASCIIStrCache.java | 2 +- .../dromara/hutool/core/text/AntPathMatcher.java | 2 +- .../org/dromara/hutool/core/text/CharArray.java | 2 +- .../org/dromara/hutool/core/text/CharPool.java | 2 +- .../hutool/core/text/CharSequenceUtil.java | 2 +- .../org/dromara/hutool/core/text/CharUtil.java | 2 +- .../dromara/hutool/core/text/CodePointIter.java | 2 +- .../org/dromara/hutool/core/text/NamingCase.java | 2 +- .../org/dromara/hutool/core/text/StrJoiner.java | 2 +- .../org/dromara/hutool/core/text/StrPool.java | 2 +- .../hutool/core/text/StrRegionMatcher.java | 2 +- .../dromara/hutool/core/text/StrRepeater.java | 2 +- .../org/dromara/hutool/core/text/StrTrimer.java | 2 +- .../org/dromara/hutool/core/text/StrUtil.java | 2 +- .../dromara/hutool/core/text/StrValidator.java | 2 +- .../dromara/hutool/core/text/TextSimilarity.java | 2 +- .../dromara/hutool/core/text/UnicodeUtil.java | 2 +- .../hutool/core/text/bloom/AbstractFilter.java | 2 +- .../hutool/core/text/bloom/BloomFilter.java | 2 +- .../core/text/bloom/CombinedBloomFilter.java | 2 +- .../hutool/core/text/bloom/FuncFilter.java | 2 +- .../hutool/core/text/bloom/package-info.java | 2 +- .../dromara/hutool/core/text/dfa/FoundWord.java | 2 +- .../org/dromara/hutool/core/text/dfa/NFA.java | 2 +- .../hutool/core/text/dfa/SensitiveProcessor.java | 2 +- .../hutool/core/text/dfa/SensitiveUtil.java | 2 +- .../dromara/hutool/core/text/dfa/StopChar.java | 2 +- .../dromara/hutool/core/text/dfa/WordTree.java | 2 +- .../hutool/core/text/dfa/package-info.java | 2 +- .../hutool/core/text/escape/EscapeUtil.java | 2 +- .../hutool/core/text/escape/Html4Escape.java | 2 +- .../hutool/core/text/escape/Html4Unescape.java | 2 +- .../core/text/escape/InternalEscapeUtil.java | 2 +- .../core/text/escape/NumericEntityUnescaper.java | 2 +- .../hutool/core/text/escape/XmlEscape.java | 2 +- .../hutool/core/text/escape/XmlUnescape.java | 2 +- .../hutool/core/text/escape/package-info.java | 2 +- .../hutool/core/text/finder/CharFinder.java | 2 +- .../core/text/finder/CharMatcherFinder.java | 2 +- .../dromara/hutool/core/text/finder/Finder.java | 2 +- .../hutool/core/text/finder/LengthFinder.java | 2 +- .../hutool/core/text/finder/MultiStrFinder.java | 2 +- .../hutool/core/text/finder/PatternFinder.java | 2 +- .../hutool/core/text/finder/StrFinder.java | 2 +- .../hutool/core/text/finder/TextFinder.java | 2 +- .../hutool/core/text/finder/package-info.java | 2 +- .../dromara/hutool/core/text/package-info.java | 2 +- .../core/text/placeholder/PlaceholderParser.java | 2 +- .../core/text/placeholder/StrFormatter.java | 2 +- .../hutool/core/text/placeholder/StrMatcher.java | 2 +- .../core/text/placeholder/StrTemplate.java | 2 +- .../core/text/placeholder/package-info.java | 2 +- .../segment/AbstractPlaceholderSegment.java | 2 +- .../segment/IndexedPlaceholderSegment.java | 2 +- .../text/placeholder/segment/LiteralSegment.java | 2 +- .../segment/NamedPlaceholderSegment.java | 2 +- .../segment/SinglePlaceholderSegment.java | 2 +- .../placeholder/segment/StrTemplateSegment.java | 2 +- .../text/placeholder/segment/package-info.java | 2 +- .../template/NamedPlaceholderStrTemplate.java | 2 +- .../template/SinglePlaceholderStrTemplate.java | 2 +- .../text/placeholder/template/package-info.java | 2 +- .../core/text/replacer/HighMultiReplacer.java | 2 +- .../core/text/replacer/HighMultiReplacerV2.java | 2 +- .../core/text/replacer/LookupReplacer.java | 2 +- .../core/text/replacer/RangeReplacerByChar.java | 2 +- .../core/text/replacer/RangeReplacerByStr.java | 2 +- .../hutool/core/text/replacer/ReplacerChain.java | 2 +- .../core/text/replacer/SearchReplacer.java | 2 +- .../hutool/core/text/replacer/StrReplacer.java | 2 +- .../hutool/core/text/replacer/package-info.java | 2 +- .../hutool/core/text/split/SplitIter.java | 2 +- .../hutool/core/text/split/SplitUtil.java | 2 +- .../hutool/core/text/split/package-info.java | 2 +- .../dromara/hutool/core/thread/AsyncUtil.java | 2 +- .../dromara/hutool/core/thread/BlockPolicy.java | 2 +- .../hutool/core/thread/ConcurrencyTester.java | 2 +- .../core/thread/DelegatedExecutorService.java | 2 +- .../hutool/core/thread/ExecutorBuilder.java | 2 +- .../FinalizableDelegatedExecutorService.java | 2 +- .../hutool/core/thread/GlobalThreadPool.java | 2 +- .../hutool/core/thread/NamedThreadFactory.java | 2 +- .../dromara/hutool/core/thread/RejectPolicy.java | 2 +- .../dromara/hutool/core/thread/RetryUtil.java | 2 +- .../hutool/core/thread/RetryableTask.java | 2 +- .../hutool/core/thread/SemaphoreRunnable.java | 2 +- .../hutool/core/thread/SimpleScheduler.java | 2 +- .../dromara/hutool/core/thread/SyncFinisher.java | 2 +- .../hutool/core/thread/ThreadException.java | 2 +- .../hutool/core/thread/ThreadFactoryBuilder.java | 2 +- .../dromara/hutool/core/thread/ThreadUtil.java | 2 +- .../hutool/core/thread/lock/LockUtil.java | 2 +- .../dromara/hutool/core/thread/lock/NoLock.java | 2 +- .../hutool/core/thread/lock/NoReadWriteLock.java | 2 +- .../hutool/core/thread/lock/package-info.java | 2 +- .../dromara/hutool/core/thread/package-info.java | 2 +- .../core/thread/ratelimiter/RateLimiter.java | 2 +- .../thread/ratelimiter/RateLimiterConfig.java | 2 +- .../thread/ratelimiter/SemaphoreRateLimiter.java | 2 +- .../ratelimiter/TokenBucketRateLimiter.java | 2 +- .../core/thread/ratelimiter/package-info.java | 2 +- .../threadlocal/NamedInheritableThreadLocal.java | 2 +- .../thread/threadlocal/NamedThreadLocal.java | 2 +- .../core/thread/threadlocal/package-info.java | 2 +- .../org/dromara/hutool/core/tree/BeanTree.java | 2 +- .../hutool/core/tree/HierarchyIterator.java | 2 +- .../hutool/core/tree/LambdaTreeNodeConfig.java | 2 +- .../org/dromara/hutool/core/tree/MapTree.java | 2 +- .../java/org/dromara/hutool/core/tree/Node.java | 2 +- .../dromara/hutool/core/tree/TreeBuilder.java | 2 +- .../org/dromara/hutool/core/tree/TreeNode.java | 2 +- .../dromara/hutool/core/tree/TreeNodeConfig.java | 2 +- .../org/dromara/hutool/core/tree/TreeUtil.java | 2 +- .../dromara/hutool/core/tree/package-info.java | 2 +- .../core/tree/parser/DefaultNodeParser.java | 2 +- .../hutool/core/tree/parser/NodeParser.java | 2 +- .../hutool/core/tree/parser/package-info.java | 2 +- .../dromara/hutool/core/util/BooleanUtil.java | 2 +- .../org/dromara/hutool/core/util/ByteUtil.java | 2 +- .../dromara/hutool/core/util/CharsetUtil.java | 2 +- .../org/dromara/hutool/core/util/EnumUtil.java | 2 +- .../org/dromara/hutool/core/util/JNDIUtil.java | 2 +- .../org/dromara/hutool/core/util/JdkUtil.java | 2 +- .../org/dromara/hutool/core/util/ObjUtil.java | 2 +- .../org/dromara/hutool/core/util/RandomUtil.java | 2 +- .../dromara/hutool/core/util/RuntimeUtil.java | 2 +- .../org/dromara/hutool/core/util/SystemUtil.java | 2 +- .../dromara/hutool/core/util/package-info.java | 2 +- .../hutool/core/xml/DocumentBuilderUtil.java | 2 +- .../hutool/core/xml/SAXParserFactoryUtil.java | 2 +- .../hutool/core/xml/UniversalNamespaceCache.java | 2 +- .../org/dromara/hutool/core/xml/XPathUtil.java | 2 +- .../org/dromara/hutool/core/xml/XXEUtil.java | 2 +- .../dromara/hutool/core/xml/XmlConstants.java | 2 +- .../org/dromara/hutool/core/xml/XmlFeatures.java | 2 +- .../org/dromara/hutool/core/xml/XmlMapper.java | 2 +- .../dromara/hutool/core/xml/XmlSaxReader.java | 2 +- .../org/dromara/hutool/core/xml/XmlUtil.java | 2 +- .../org/dromara/hutool/core/xml/XmlWriter.java | 2 +- .../dromara/hutool/core/xml/package-info.java | 2 +- .../java/org/dromara/hutool/cron/CronConfig.java | 2 +- .../org/dromara/hutool/cron/CronException.java | 2 +- .../java/org/dromara/hutool/cron/CronTimer.java | 2 +- .../java/org/dromara/hutool/cron/CronUtil.java | 2 +- .../java/org/dromara/hutool/cron/Scheduler.java | 2 +- .../org/dromara/hutool/cron/TaskExecutor.java | 2 +- .../dromara/hutool/cron/TaskExecutorManager.java | 2 +- .../org/dromara/hutool/cron/TaskLauncher.java | 2 +- .../dromara/hutool/cron/TaskLauncherManager.java | 2 +- .../java/org/dromara/hutool/cron/TaskTable.java | 2 +- .../hutool/cron/listener/SimpleTaskListener.java | 2 +- .../hutool/cron/listener/TaskListener.java | 2 +- .../cron/listener/TaskListenerManager.java | 2 +- .../hutool/cron/listener/package-info.java | 2 +- .../org/dromara/hutool/cron/package-info.java | 2 +- .../dromara/hutool/cron/pattern/CronPattern.java | 2 +- .../hutool/cron/pattern/CronPatternBuilder.java | 2 +- .../hutool/cron/pattern/CronPatternUtil.java | 2 +- .../org/dromara/hutool/cron/pattern/Part.java | 2 +- .../dromara/hutool/cron/pattern/PatternUtil.java | 2 +- .../cron/pattern/matcher/AlwaysTrueMatcher.java | 2 +- .../cron/pattern/matcher/BoolArrayMatcher.java | 2 +- .../cron/pattern/matcher/DayOfMonthMatcher.java | 2 +- .../hutool/cron/pattern/matcher/PartMatcher.java | 2 +- .../cron/pattern/matcher/PatternMatcher.java | 2 +- .../cron/pattern/matcher/YearValueMatcher.java | 2 +- .../cron/pattern/matcher/package-info.java | 2 +- .../hutool/cron/pattern/package-info.java | 2 +- .../hutool/cron/pattern/parser/PartParser.java | 2 +- .../cron/pattern/parser/PatternParser.java | 2 +- .../hutool/cron/pattern/parser/package-info.java | 2 +- .../org/dromara/hutool/cron/task/CronTask.java | 2 +- .../org/dromara/hutool/cron/task/InvokeTask.java | 2 +- .../dromara/hutool/cron/task/RunnableTask.java | 2 +- .../java/org/dromara/hutool/cron/task/Task.java | 2 +- .../dromara/hutool/cron/task/package-info.java | 2 +- .../hutool/cron/timingwheel/SystemTimer.java | 2 +- .../hutool/cron/timingwheel/TimerTask.java | 2 +- .../hutool/cron/timingwheel/TimerTaskList.java | 2 +- .../hutool/cron/timingwheel/TimingWheel.java | 2 +- .../hutool/cron/timingwheel/package-info.java | 2 +- .../java/org/dromara/hutool/crypto/CertUtil.java | 2 +- .../java/org/dromara/hutool/crypto/Cipher.java | 2 +- .../org/dromara/hutool/crypto/CipherMode.java | 2 +- .../dromara/hutool/crypto/CryptoException.java | 2 +- .../org/dromara/hutool/crypto/JceCipher.java | 2 +- .../org/dromara/hutool/crypto/KeyStoreUtil.java | 2 +- .../java/org/dromara/hutool/crypto/KeyUtil.java | 2 +- .../java/org/dromara/hutool/crypto/Mode.java | 2 +- .../java/org/dromara/hutool/crypto/Padding.java | 2 +- .../org/dromara/hutool/crypto/SecureUtil.java | 2 +- .../java/org/dromara/hutool/crypto/SignUtil.java | 2 +- .../java/org/dromara/hutool/crypto/SpecUtil.java | 2 +- .../asymmetric/AbstractAsymmetricCrypto.java | 2 +- .../crypto/asymmetric/AsymmetricAlgorithm.java | 2 +- .../crypto/asymmetric/AsymmetricCrypto.java | 2 +- .../crypto/asymmetric/AsymmetricDecryptor.java | 2 +- .../crypto/asymmetric/AsymmetricEncryptor.java | 2 +- .../hutool/crypto/asymmetric/BaseAsymmetric.java | 2 +- .../dromara/hutool/crypto/asymmetric/ECIES.java | 2 +- .../hutool/crypto/asymmetric/KeyType.java | 2 +- .../dromara/hutool/crypto/asymmetric/RSA.java | 2 +- .../dromara/hutool/crypto/asymmetric/SM2.java | 2 +- .../dromara/hutool/crypto/asymmetric/Sign.java | 2 +- .../hutool/crypto/asymmetric/SignAlgorithm.java | 2 +- .../hutool/crypto/asymmetric/package-info.java | 2 +- .../asymmetric/paillier/PaillierCipher.java | 2 +- .../paillier/PaillierCipherSpiImpl.java | 2 +- .../asymmetric/paillier/PaillierCrypto.java | 2 +- .../crypto/asymmetric/paillier/PaillierKey.java | 2 +- .../paillier/PaillierKeyPairGenerator.java | 2 +- .../asymmetric/paillier/PaillierPrivateKey.java | 2 +- .../asymmetric/paillier/PaillierPublicKey.java | 2 +- .../crypto/asymmetric/paillier/package-info.java | 2 +- .../org/dromara/hutool/crypto/bc/ASN1Util.java | 2 +- .../org/dromara/hutool/crypto/bc/BCCipher.java | 2 +- .../org/dromara/hutool/crypto/bc/BCUtil.java | 2 +- .../org/dromara/hutool/crypto/bc/ECKeyUtil.java | 2 +- .../dromara/hutool/crypto/bc/OpensslKeyUtil.java | 2 +- .../org/dromara/hutool/crypto/bc/PemUtil.java | 2 +- .../org/dromara/hutool/crypto/bc/SmUtil.java | 2 +- .../dromara/hutool/crypto/bc/package-info.java | 2 +- .../org/dromara/hutool/crypto/digest/BCrypt.java | 2 +- .../hutool/crypto/digest/DigestAlgorithm.java | 2 +- .../dromara/hutool/crypto/digest/DigestUtil.java | 2 +- .../dromara/hutool/crypto/digest/Digester.java | 2 +- .../hutool/crypto/digest/DigesterFactory.java | 2 +- .../org/dromara/hutool/crypto/digest/MD5.java | 2 +- .../org/dromara/hutool/crypto/digest/SM3.java | 2 +- .../hutool/crypto/digest/mac/BCHMacEngine.java | 2 +- .../hutool/crypto/digest/mac/BCMacEngine.java | 2 +- .../digest/mac/CBCBlockCipherMacEngine.java | 2 +- .../dromara/hutool/crypto/digest/mac/HMac.java | 2 +- .../hutool/crypto/digest/mac/HmacAlgorithm.java | 2 +- .../hutool/crypto/digest/mac/JCEMacEngine.java | 2 +- .../dromara/hutool/crypto/digest/mac/Mac.java | 2 +- .../hutool/crypto/digest/mac/MacEngine.java | 2 +- .../crypto/digest/mac/MacEngineFactory.java | 2 +- .../hutool/crypto/digest/mac/SM4MacEngine.java | 2 +- .../hutool/crypto/digest/mac/package-info.java | 2 +- .../dromara/hutool/crypto/digest/otp/HOTP.java | 2 +- .../dromara/hutool/crypto/digest/otp/TOTP.java | 2 +- .../hutool/crypto/digest/otp/package-info.java | 2 +- .../hutool/crypto/digest/package-info.java | 2 +- .../crypto/openssl/OpenSSLPBEInputStream.java | 2 +- .../crypto/openssl/OpenSSLPBEOutputStream.java | 2 +- .../hutool/crypto/openssl/OpenSSLSaltParser.java | 2 +- .../dromara/hutool/crypto/openssl/SaltMagic.java | 2 +- .../hutool/crypto/openssl/package-info.java | 2 +- .../org/dromara/hutool/crypto/package-info.java | 2 +- .../provider/BouncyCastleProviderFactory.java | 2 +- .../crypto/provider/GlobalProviderFactory.java | 2 +- .../hutool/crypto/provider/ProviderFactory.java | 2 +- .../hutool/crypto/provider/package-info.java | 2 +- .../org/dromara/hutool/crypto/sasl/SaslUtil.java | 2 +- .../dromara/hutool/crypto/sasl/package-info.java | 2 +- .../org/dromara/hutool/crypto/symmetric/AES.java | 2 +- .../hutool/crypto/symmetric/ChaCha20.java | 2 +- .../org/dromara/hutool/crypto/symmetric/DES.java | 2 +- .../dromara/hutool/crypto/symmetric/DESede.java | 2 +- .../org/dromara/hutool/crypto/symmetric/FPE.java | 2 +- .../dromara/hutool/crypto/symmetric/PBKDF2.java | 2 +- .../org/dromara/hutool/crypto/symmetric/SM4.java | 2 +- .../crypto/symmetric/SymmetricAlgorithm.java | 2 +- .../hutool/crypto/symmetric/SymmetricCrypto.java | 2 +- .../crypto/symmetric/SymmetricDecryptor.java | 2 +- .../crypto/symmetric/SymmetricEncryptor.java | 2 +- .../hutool/crypto/symmetric/Vigenere.java | 2 +- .../dromara/hutool/crypto/symmetric/XXTEA.java | 2 +- .../org/dromara/hutool/crypto/symmetric/ZUC.java | 2 +- .../hutool/crypto/symmetric/package-info.java | 2 +- ...romara.hutool.crypto.provider.ProviderFactory | 2 +- .../java/org/dromara/hutool/db/AbstractDb.java | 2 +- .../java/org/dromara/hutool/db/ActiveEntity.java | 2 +- .../org/dromara/hutool/db/ConnectionHolder.java | 2 +- .../java/org/dromara/hutool/db/DaoTemplate.java | 2 +- .../src/main/java/org/dromara/hutool/db/Db.java | 2 +- .../java/org/dromara/hutool/db/DbException.java | 2 +- .../hutool/db/DefaultConnectionHolder.java | 2 +- .../org/dromara/hutool/db/DialectRunner.java | 2 +- .../main/java/org/dromara/hutool/db/Entity.java | 2 +- .../main/java/org/dromara/hutool/db/Page.java | 2 +- .../java/org/dromara/hutool/db/PageResult.java | 2 +- .../main/java/org/dromara/hutool/db/Session.java | 2 +- .../dromara/hutool/db/ThreadLocalConnection.java | 2 +- .../dromara/hutool/db/config/ConfigParser.java | 2 +- .../hutool/db/config/ConnectionConfig.java | 2 +- .../org/dromara/hutool/db/config/DSKeys.java | 2 +- .../org/dromara/hutool/db/config/DbConfig.java | 2 +- .../hutool/db/config/SettingConfigParser.java | 2 +- .../dromara/hutool/db/config/package-info.java | 2 +- .../org/dromara/hutool/db/dialect/Dialect.java | 2 +- .../hutool/db/dialect/DialectFactory.java | 2 +- .../dromara/hutool/db/dialect/DialectName.java | 2 +- .../hutool/db/dialect/impl/AnsiSqlDialect.java | 2 +- .../hutool/db/dialect/impl/DmDialect.java | 2 +- .../hutool/db/dialect/impl/H2Dialect.java | 2 +- .../hutool/db/dialect/impl/MysqlDialect.java | 2 +- .../hutool/db/dialect/impl/OracleDialect.java | 2 +- .../hutool/db/dialect/impl/PhoenixDialect.java | 2 +- .../db/dialect/impl/PostgresqlDialect.java | 2 +- .../db/dialect/impl/SqlServer2005Dialect.java | 2 +- .../db/dialect/impl/SqlServer2012Dialect.java | 2 +- .../hutool/db/dialect/impl/Sqlite3Dialect.java | 2 +- .../hutool/db/dialect/impl/package-info.java | 2 +- .../dromara/hutool/db/dialect/package-info.java | 2 +- .../hutool/db/driver/DriverIdentifier.java | 2 +- .../dromara/hutool/db/driver/DriverNames.java | 2 +- .../org/dromara/hutool/db/driver/DriverUtil.java | 2 +- .../db/driver/matcher/Db2DriverMatcher.java | 2 +- .../hutool/db/driver/matcher/DriverMatcher.java | 2 +- .../db/driver/matcher/MysqlDriverMatcher.java | 2 +- .../driver/matcher/StartsWithDriverMatcher.java | 2 +- .../hutool/db/driver/matcher/package-info.java | 2 +- .../dromara/hutool/db/driver/package-info.java | 2 +- .../dromara/hutool/db/ds/AbstractDSFactory.java | 2 +- .../java/org/dromara/hutool/db/ds/DSFactory.java | 2 +- .../java/org/dromara/hutool/db/ds/DSPool.java | 2 +- .../java/org/dromara/hutool/db/ds/DSUtil.java | 2 +- .../java/org/dromara/hutool/db/ds/DSWrapper.java | 2 +- .../dromara/hutool/db/ds/bee/BeeDSFactory.java | 2 +- .../dromara/hutool/db/ds/bee/package-info.java | 2 +- .../dromara/hutool/db/ds/c3p0/C3p0DSFactory.java | 2 +- .../dromara/hutool/db/ds/c3p0/package-info.java | 2 +- .../dromara/hutool/db/ds/dbcp/DbcpDSFactory.java | 2 +- .../dromara/hutool/db/ds/dbcp/package-info.java | 2 +- .../hutool/db/ds/druid/DruidDSFactory.java | 2 +- .../dromara/hutool/db/ds/druid/package-info.java | 2 +- .../hutool/db/ds/hikari/HikariDSFactory.java | 2 +- .../hutool/db/ds/hikari/package-info.java | 2 +- .../dromara/hutool/db/ds/jndi/JndiDSFactory.java | 2 +- .../dromara/hutool/db/ds/jndi/package-info.java | 2 +- .../org/dromara/hutool/db/ds/package-info.java | 2 +- .../hutool/db/ds/pooled/ConnectionWrapper.java | 2 +- .../hutool/db/ds/pooled/PooledConnection.java | 2 +- .../hutool/db/ds/pooled/PooledDSFactory.java | 2 +- .../hutool/db/ds/pooled/PooledDataSource.java | 2 +- .../hutool/db/ds/pooled/package-info.java | 2 +- .../hutool/db/ds/simple/AbstractDataSource.java | 2 +- .../hutool/db/ds/simple/SimpleDSFactory.java | 2 +- .../hutool/db/ds/simple/SimpleDataSource.java | 2 +- .../hutool/db/ds/simple/package-info.java | 2 +- .../hutool/db/ds/tomcat/TomcatDSFactory.java | 2 +- .../hutool/db/ds/tomcat/package-info.java | 2 +- .../dromara/hutool/db/handler/BeanHandler.java | 2 +- .../hutool/db/handler/BeanListHandler.java | 2 +- .../dromara/hutool/db/handler/EntityHandler.java | 2 +- .../hutool/db/handler/EntityListHandler.java | 2 +- .../hutool/db/handler/EntitySetHandler.java | 2 +- .../dromara/hutool/db/handler/NumberHandler.java | 2 +- .../hutool/db/handler/PageResultHandler.java | 2 +- .../dromara/hutool/db/handler/ResultSetUtil.java | 2 +- .../org/dromara/hutool/db/handler/RsHandler.java | 2 +- .../dromara/hutool/db/handler/StringHandler.java | 2 +- .../hutool/db/handler/ValueListHandler.java | 2 +- .../dromara/hutool/db/handler/package-info.java | 2 +- .../hutool/db/handler/row/AbsRowHandler.java | 2 +- .../hutool/db/handler/row/ArrayRowHandler.java | 2 +- .../hutool/db/handler/row/BeanRowHandler.java | 2 +- .../hutool/db/handler/row/EntityRowHandler.java | 2 +- .../hutool/db/handler/row/ListRowHandler.java | 2 +- .../hutool/db/handler/row/RowHandler.java | 2 +- .../hutool/db/handler/row/StringRowHandler.java | 2 +- .../hutool/db/handler/row/package-info.java | 2 +- .../java/org/dromara/hutool/db/meta/Column.java | 2 +- .../dromara/hutool/db/meta/ColumnIndexInfo.java | 2 +- .../hutool/db/meta/DatabaseMetaDataWrapper.java | 2 +- .../org/dromara/hutool/db/meta/IndexInfo.java | 2 +- .../org/dromara/hutool/db/meta/JdbcType.java | 2 +- .../org/dromara/hutool/db/meta/MetaUtil.java | 2 +- .../org/dromara/hutool/db/meta/ResultColumn.java | 2 +- .../java/org/dromara/hutool/db/meta/Table.java | 2 +- .../org/dromara/hutool/db/meta/TableType.java | 2 +- .../org/dromara/hutool/db/meta/package-info.java | 2 +- .../java/org/dromara/hutool/db/package-info.java | 2 +- .../java/org/dromara/hutool/db/sql/BoundSql.java | 2 +- .../org/dromara/hutool/db/sql/Condition.java | 2 +- .../dromara/hutool/db/sql/ConditionBuilder.java | 2 +- .../dromara/hutool/db/sql/ConditionGroup.java | 2 +- .../org/dromara/hutool/db/sql/Direction.java | 2 +- .../dromara/hutool/db/sql/LogicalOperator.java | 2 +- .../java/org/dromara/hutool/db/sql/NamedSql.java | 2 +- .../java/org/dromara/hutool/db/sql/Order.java | 2 +- .../java/org/dromara/hutool/db/sql/Query.java | 2 +- .../org/dromara/hutool/db/sql/QuoteWrapper.java | 2 +- .../org/dromara/hutool/db/sql/SqlBuilder.java | 2 +- .../org/dromara/hutool/db/sql/SqlExecutor.java | 2 +- .../org/dromara/hutool/db/sql/SqlFormatter.java | 2 +- .../java/org/dromara/hutool/db/sql/SqlLog.java | 2 +- .../java/org/dromara/hutool/db/sql/SqlUtil.java | 2 +- .../dromara/hutool/db/sql/StatementBuilder.java | 2 +- .../org/dromara/hutool/db/sql/StatementUtil.java | 2 +- .../dromara/hutool/db/sql/StatementWrapper.java | 2 +- .../dromara/hutool/db/sql/filter/SqlFilter.java | 2 +- .../hutool/db/sql/filter/SqlFilterChain.java | 2 +- .../hutool/db/sql/filter/SqlLogFilter.java | 2 +- .../hutool/db/sql/filter/package-info.java | 2 +- .../org/dromara/hutool/db/sql/package-info.java | 2 +- .../hutool/db/transaction/TransactionLevel.java | 2 +- .../hutool/db/transaction/package-info.java | 2 +- .../services/org.dromara.hutool.db.ds.DSFactory | 2 +- .../org/dromara/hutool/extra/aop/Aspect.java | 2 +- .../org/dromara/hutool/extra/aop/ProxyUtil.java | 2 +- .../hutool/extra/aop/SimpleInterceptor.java | 2 +- .../hutool/extra/aop/aspects/SimpleAspect.java | 2 +- .../extra/aop/aspects/TimeIntervalAspect.java | 2 +- .../hutool/extra/aop/aspects/package-info.java | 2 +- .../hutool/extra/aop/engine/ProxyEngine.java | 2 +- .../extra/aop/engine/ProxyEngineFactory.java | 2 +- .../extra/aop/engine/jdk/JdkInterceptor.java | 2 +- .../extra/aop/engine/jdk/JdkProxyEngine.java | 2 +- .../extra/aop/engine/jdk/package-info.java | 2 +- .../hutool/extra/aop/engine/package-info.java | 2 +- .../engine/spring/SpringCglibInterceptor.java | 2 +- .../engine/spring/SpringCglibProxyEngine.java | 2 +- .../extra/aop/engine/spring/package-info.java | 2 +- .../dromara/hutool/extra/aop/package-info.java | 2 +- .../hutool/extra/compress/CompressException.java | 2 +- .../hutool/extra/compress/CompressUtil.java | 2 +- .../hutool/extra/compress/archiver/Archiver.java | 2 +- .../extra/compress/archiver/SevenZArchiver.java | 2 +- .../extra/compress/archiver/StreamArchiver.java | 2 +- .../extra/compress/archiver/package-info.java | 2 +- .../extra/compress/extractor/Extractor.java | 2 +- .../extractor/Seven7EntryInputStream.java | 2 +- .../compress/extractor/SevenZExtractor.java | 2 +- .../compress/extractor/StreamExtractor.java | 2 +- .../extra/compress/extractor/package-info.java | 2 +- .../hutool/extra/compress/package-info.java | 2 +- .../dromara/hutool/extra/emoji/EmojiUtil.java | 2 +- .../dromara/hutool/extra/emoji/package-info.java | 2 +- .../dromara/hutool/extra/ftp/AbstractFtp.java | 2 +- .../org/dromara/hutool/extra/ftp/CommonsFtp.java | 2 +- .../java/org/dromara/hutool/extra/ftp/Ftp.java | 2 +- .../org/dromara/hutool/extra/ftp/FtpConfig.java | 2 +- .../dromara/hutool/extra/ftp/FtpException.java | 2 +- .../org/dromara/hutool/extra/ftp/FtpMode.java | 2 +- .../hutool/extra/ftp/SimpleFtpServer.java | 2 +- .../dromara/hutool/extra/ftp/package-info.java | 2 +- .../hutool/extra/mail/GlobalMailAccount.java | 2 +- .../hutool/extra/mail/InternalMailUtil.java | 2 +- .../java/org/dromara/hutool/extra/mail/Mail.java | 2 +- .../dromara/hutool/extra/mail/MailAccount.java | 2 +- .../dromara/hutool/extra/mail/MailException.java | 2 +- .../org/dromara/hutool/extra/mail/MailUtil.java | 2 +- .../dromara/hutool/extra/mail/package-info.java | 2 +- .../hutool/extra/management/HostInfo.java | 2 +- .../hutool/extra/management/JavaInfo.java | 2 +- .../hutool/extra/management/JavaRuntimeInfo.java | 2 +- .../hutool/extra/management/JavaSpecInfo.java | 2 +- .../dromara/hutool/extra/management/JvmInfo.java | 2 +- .../hutool/extra/management/JvmSpecInfo.java | 2 +- .../extra/management/ManagementException.java | 2 +- .../hutool/extra/management/ManagementUtil.java | 2 +- .../dromara/hutool/extra/management/OsInfo.java | 2 +- .../hutool/extra/management/RuntimeInfo.java | 2 +- .../hutool/extra/management/SystemPropsKeys.java | 2 +- .../hutool/extra/management/UserInfo.java | 2 +- .../hutool/extra/management/oshi/CpuInfo.java | 2 +- .../hutool/extra/management/oshi/CpuTicks.java | 2 +- .../hutool/extra/management/oshi/OshiUtil.java | 2 +- .../extra/management/oshi/package-info.java | 2 +- .../hutool/extra/management/package-info.java | 2 +- .../org/dromara/hutool/extra/package-info.java | 2 +- .../hutool/extra/pinyin/PinyinException.java | 2 +- .../dromara/hutool/extra/pinyin/PinyinUtil.java | 2 +- .../hutool/extra/pinyin/engine/PinyinEngine.java | 2 +- .../extra/pinyin/engine/PinyinEngineFactory.java | 2 +- .../engine/bopomofo4j/Bopomofo4jEngine.java | 2 +- .../pinyin/engine/bopomofo4j/package-info.java | 2 +- .../extra/pinyin/engine/houbb/HoubbEngine.java | 2 +- .../extra/pinyin/engine/houbb/package-info.java | 2 +- .../pinyin/engine/jpinyin/JPinyinEngine.java | 2 +- .../pinyin/engine/jpinyin/package-info.java | 2 +- .../hutool/extra/pinyin/engine/package-info.java | 2 +- .../pinyin/engine/pinyin4j/Pinyin4jEngine.java | 2 +- .../pinyin/engine/pinyin4j/package-info.java | 2 +- .../engine/tinypinyin/TinyPinyinEngine.java | 2 +- .../pinyin/engine/tinypinyin/package-info.java | 2 +- .../hutool/extra/pinyin/package-info.java | 2 +- .../qrcode/BufferedImageLuminanceSource.java | 2 +- .../dromara/hutool/extra/qrcode/QrAsciiArt.java | 2 +- .../hutool/extra/qrcode/QrCodeException.java | 2 +- .../dromara/hutool/extra/qrcode/QrCodeUtil.java | 2 +- .../dromara/hutool/extra/qrcode/QrConfig.java | 2 +- .../dromara/hutool/extra/qrcode/QrDecoder.java | 2 +- .../dromara/hutool/extra/qrcode/QrEncoder.java | 2 +- .../org/dromara/hutool/extra/qrcode/QrImage.java | 2 +- .../org/dromara/hutool/extra/qrcode/QrSVG.java | 2 +- .../hutool/extra/qrcode/package-info.java | 2 +- .../dromara/hutool/extra/spring/SpringUtil.java | 2 +- .../extra/spring/cglib/BeanCopierCache.java | 2 +- .../hutool/extra/spring/cglib/CglibUtil.java | 2 +- .../hutool/extra/spring/cglib/package-info.java | 2 +- .../hutool/extra/spring/package-info.java | 2 +- .../org/dromara/hutool/extra/ssh/Connector.java | 2 +- .../org/dromara/hutool/extra/ssh/Session.java | 2 +- .../dromara/hutool/extra/ssh/SshException.java | 2 +- .../extra/ssh/engine/ganymed/GanymedSession.java | 2 +- .../extra/ssh/engine/ganymed/GanymedUtil.java | 2 +- .../extra/ssh/engine/ganymed/package-info.java | 2 +- .../extra/ssh/engine/jsch/ChannelType.java | 2 +- .../extra/ssh/engine/jsch/JschSession.java | 2 +- .../hutool/extra/ssh/engine/jsch/JschSftp.java | 2 +- .../hutool/extra/ssh/engine/jsch/JschUtil.java | 2 +- .../extra/ssh/engine/jsch/package-info.java | 2 +- .../extra/ssh/engine/mina/MinaSession.java | 2 +- .../hutool/extra/ssh/engine/mina/MinaUtil.java | 2 +- .../extra/ssh/engine/mina/package-info.java | 2 +- .../hutool/extra/ssh/engine/package-info.java | 2 +- .../extra/ssh/engine/sshj/SshjSession.java | 2 +- .../hutool/extra/ssh/engine/sshj/SshjSftp.java | 2 +- .../hutool/extra/ssh/engine/sshj/SshjUtil.java | 2 +- .../extra/ssh/engine/sshj/package-info.java | 2 +- .../dromara/hutool/extra/ssh/package-info.java | 2 +- .../dromara/hutool/extra/template/Template.java | 2 +- .../hutool/extra/template/TemplateConfig.java | 2 +- .../hutool/extra/template/TemplateException.java | 2 +- .../hutool/extra/template/TemplateUtil.java | 2 +- .../extra/template/engine/TemplateEngine.java | 2 +- .../template/engine/TemplateEngineFactory.java | 2 +- .../extra/template/engine/beetl/BeetlEngine.java | 2 +- .../template/engine/beetl/BeetlTemplate.java | 2 +- .../template/engine/beetl/package-info.java | 2 +- .../extra/template/engine/enjoy/EnjoyEngine.java | 2 +- .../template/engine/enjoy/EnjoyTemplate.java | 2 +- .../template/engine/enjoy/package-info.java | 2 +- .../engine/freemarker/FreemarkerEngine.java | 2 +- .../engine/freemarker/FreemarkerTemplate.java | 2 +- .../freemarker/SimpleStringTemplateLoader.java | 2 +- .../template/engine/freemarker/package-info.java | 2 +- .../template/engine/jetbrick/JetbrickEngine.java | 2 +- .../engine/jetbrick/JetbrickTemplate.java | 2 +- .../jetbrick/loader/StringResourceLoader.java | 2 +- .../engine/jetbrick/loader/package-info.java | 2 +- .../template/engine/jetbrick/package-info.java | 2 +- .../extra/template/engine/jte/JteEngine.java | 2 +- .../extra/template/engine/jte/JteTemplate.java | 2 +- .../engine/jte/SimpleStringCodeResolver.java | 2 +- .../extra/template/engine/jte/package-info.java | 2 +- .../extra/template/engine/package-info.java | 2 +- .../template/engine/pebble/PebbleTemplate.java | 2 +- .../engine/pebble/PebbleTemplateEngine.java | 2 +- .../template/engine/pebble/package-info.java | 2 +- .../extra/template/engine/rythm/RythmEngine.java | 2 +- .../template/engine/rythm/RythmTemplate.java | 2 +- .../template/engine/rythm/package-info.java | 2 +- .../engine/thymeleaf/ThymeleafEngine.java | 2 +- .../engine/thymeleaf/ThymeleafTemplate.java | 2 +- .../template/engine/thymeleaf/package-info.java | 2 +- .../velocity/SimpleStringResourceLoader.java | 2 +- .../template/engine/velocity/VelocityEngine.java | 2 +- .../engine/velocity/VelocityTemplate.java | 2 +- .../template/engine/velocity/package-info.java | 2 +- .../extra/template/engine/wit/WitEngine.java | 2 +- .../extra/template/engine/wit/WitTemplate.java | 2 +- .../extra/template/engine/wit/package-info.java | 2 +- .../hutool/extra/template/package-info.java | 2 +- .../hutool/extra/tokenizer/AbstractResult.java | 2 +- .../dromara/hutool/extra/tokenizer/Result.java | 2 +- .../extra/tokenizer/TokenizerException.java | 2 +- .../hutool/extra/tokenizer/TokenizerUtil.java | 2 +- .../org/dromara/hutool/extra/tokenizer/Word.java | 2 +- .../extra/tokenizer/engine/TokenizerEngine.java | 2 +- .../tokenizer/engine/TokenizerEngineFactory.java | 2 +- .../engine/analysis/AnalysisEngine.java | 2 +- .../engine/analysis/AnalysisResult.java | 2 +- .../tokenizer/engine/analysis/AnalysisWord.java | 2 +- .../tokenizer/engine/analysis/SmartcnEngine.java | 2 +- .../tokenizer/engine/analysis/package-info.java | 2 +- .../extra/tokenizer/engine/ansj/AnsjEngine.java | 2 +- .../extra/tokenizer/engine/ansj/AnsjResult.java | 2 +- .../extra/tokenizer/engine/ansj/AnsjWord.java | 2 +- .../tokenizer/engine/ansj/package-info.java | 2 +- .../tokenizer/engine/hanlp/HanLPEngine.java | 2 +- .../tokenizer/engine/hanlp/HanLPResult.java | 2 +- .../extra/tokenizer/engine/hanlp/HanLPWord.java | 2 +- .../tokenizer/engine/hanlp/package-info.java | 2 +- .../engine/ikanalyzer/IKAnalyzerEngine.java | 2 +- .../engine/ikanalyzer/IKAnalyzerResult.java | 2 +- .../engine/ikanalyzer/IKAnalyzerWord.java | 2 +- .../engine/ikanalyzer/package-info.java | 2 +- .../tokenizer/engine/jcseg/JcsegEngine.java | 2 +- .../tokenizer/engine/jcseg/JcsegResult.java | 2 +- .../extra/tokenizer/engine/jcseg/JcsegWord.java | 2 +- .../tokenizer/engine/jcseg/package-info.java | 2 +- .../tokenizer/engine/jieba/JiebaEngine.java | 2 +- .../tokenizer/engine/jieba/JiebaResult.java | 2 +- .../extra/tokenizer/engine/jieba/JiebaWord.java | 2 +- .../tokenizer/engine/jieba/package-info.java | 2 +- .../tokenizer/engine/mmseg/MmsegEngine.java | 2 +- .../tokenizer/engine/mmseg/MmsegResult.java | 2 +- .../extra/tokenizer/engine/mmseg/MmsegWord.java | 2 +- .../tokenizer/engine/mmseg/package-info.java | 2 +- .../tokenizer/engine/mynlp/MynlpEngine.java | 2 +- .../tokenizer/engine/mynlp/MynlpResult.java | 2 +- .../extra/tokenizer/engine/mynlp/MynlpWord.java | 2 +- .../tokenizer/engine/mynlp/package-info.java | 2 +- .../extra/tokenizer/engine/package-info.java | 2 +- .../extra/tokenizer/engine/word/WordEngine.java | 2 +- .../extra/tokenizer/engine/word/WordResult.java | 2 +- .../extra/tokenizer/engine/word/WordWord.java | 2 +- .../tokenizer/engine/word/package-info.java | 2 +- .../hutool/extra/tokenizer/package-info.java | 2 +- .../extra/validation/BeanValidationResult.java | 2 +- .../hutool/extra/validation/ValidationUtil.java | 2 +- .../hutool/extra/validation/package-info.java | 2 +- .../org/dromara/hutool/extra/xml/JAXBUtil.java | 2 +- .../dromara/hutool/extra/xml/package-info.java | 2 +- ...g.dromara.hutool.extra.aop.engine.ProxyEngine | 2 +- ...omara.hutool.extra.pinyin.engine.PinyinEngine | 2 +- ...a.hutool.extra.template.engine.TemplateEngine | 2 +- ...hutool.extra.tokenizer.engine.TokenizerEngine | 2 +- .../http/GlobalCompressStreamRegister.java | 2 +- .../org/dromara/hutool/http/GlobalHeaders.java | 2 +- .../org/dromara/hutool/http/HttpException.java | 2 +- .../dromara/hutool/http/HttpGlobalConfig.java | 2 +- .../java/org/dromara/hutool/http/HttpUtil.java | 2 +- .../dromara/hutool/http/auth/HttpAuthUtil.java | 2 +- .../dromara/hutool/http/auth/package-info.java | 2 +- .../dromara/hutool/http/client/ClientConfig.java | 2 +- .../hutool/http/client/HeaderOperation.java | 2 +- .../hutool/http/client/HttpDownloader.java | 2 +- .../org/dromara/hutool/http/client/Request.java | 2 +- .../org/dromara/hutool/http/client/Response.java | 2 +- .../hutool/http/client/body/BytesBody.java | 2 +- .../hutool/http/client/body/FormBody.java | 2 +- .../hutool/http/client/body/HttpBody.java | 2 +- .../hutool/http/client/body/MultipartBody.java | 2 +- .../http/client/body/MultipartOutputStream.java | 2 +- .../hutool/http/client/body/ResourceBody.java | 2 +- .../hutool/http/client/body/ResponseBody.java | 2 +- .../hutool/http/client/body/StringBody.java | 2 +- .../http/client/body/UrlEncodedFormBody.java | 2 +- .../hutool/http/client/body/package-info.java | 2 +- .../http/client/cookie/GlobalCookieManager.java | 2 +- .../client/cookie/ThreadLocalCookieStore.java | 2 +- .../hutool/http/client/cookie/package-info.java | 2 +- .../http/client/engine/AbstractClientEngine.java | 2 +- .../hutool/http/client/engine/ClientEngine.java | 2 +- .../http/client/engine/ClientEngineFactory.java | 2 +- .../httpclient4/HttpClient4BodyEntity.java | 2 +- .../engine/httpclient4/HttpClient4Engine.java | 2 +- .../engine/httpclient4/HttpClient4Response.java | 2 +- .../client/engine/httpclient4/package-info.java | 2 +- .../httpclient5/HttpClient5BodyEntity.java | 2 +- .../engine/httpclient5/HttpClient5Engine.java | 2 +- .../engine/httpclient5/HttpClient5Response.java | 2 +- .../client/engine/httpclient5/package-info.java | 2 +- .../client/engine/jdk/HttpUrlConnectionUtil.java | 2 +- .../http/client/engine/jdk/JdkClientEngine.java | 2 +- .../client/engine/jdk/JdkHttpConnection.java | 2 +- .../client/engine/jdk/JdkHttpInputStream.java | 2 +- .../http/client/engine/jdk/JdkHttpResponse.java | 2 +- .../http/client/engine/jdk/package-info.java | 2 +- .../engine/okhttp/BasicProxyAuthenticator.java | 2 +- .../http/client/engine/okhttp/OkHttpEngine.java | 2 +- .../client/engine/okhttp/OkHttpRequestBody.java | 2 +- .../client/engine/okhttp/OkHttpResponse.java | 2 +- .../http/client/engine/okhttp/package-info.java | 2 +- .../hutool/http/client/engine/package-info.java | 2 +- .../dromara/hutool/http/client/package-info.java | 2 +- .../org/dromara/hutool/http/html/HtmlFilter.java | 2 +- .../org/dromara/hutool/http/html/HtmlUtil.java | 2 +- .../dromara/hutool/http/html/package-info.java | 2 +- .../dromara/hutool/http/meta/ContentType.java | 2 +- .../hutool/http/meta/ContentTypeUtil.java | 2 +- .../org/dromara/hutool/http/meta/HeaderName.java | 2 +- .../dromara/hutool/http/meta/HttpHeaderUtil.java | 2 +- .../org/dromara/hutool/http/meta/HttpStatus.java | 2 +- .../org/dromara/hutool/http/meta/Method.java | 2 +- .../dromara/hutool/http/meta/package-info.java | 2 +- .../org/dromara/hutool/http/package-info.java | 2 +- .../org/dromara/hutool/http/proxy/HttpProxy.java | 2 +- .../dromara/hutool/http/proxy/package-info.java | 2 +- .../hutool/http/server/HttpExchangeWrapper.java | 2 +- .../hutool/http/server/HttpServerBase.java | 2 +- .../hutool/http/server/HttpServerRequest.java | 2 +- .../hutool/http/server/HttpServerResponse.java | 2 +- .../dromara/hutool/http/server/SimpleServer.java | 2 +- .../hutool/http/server/action/Action.java | 2 +- .../hutool/http/server/action/RootAction.java | 2 +- .../hutool/http/server/action/package-info.java | 2 +- .../server/filter/DefaultExceptionFilter.java | 2 +- .../http/server/filter/ExceptionFilter.java | 2 +- .../hutool/http/server/filter/HttpFilter.java | 2 +- .../hutool/http/server/filter/SimpleFilter.java | 2 +- .../hutool/http/server/filter/package-info.java | 2 +- .../http/server/handler/ActionHandler.java | 2 +- .../hutool/http/server/handler/package-info.java | 2 +- .../dromara/hutool/http/server/package-info.java | 2 +- .../http/server/servlet/JavaxServletUtil.java | 2 +- .../hutool/http/server/servlet/ServletUtil.java | 2 +- .../hutool/http/server/servlet/package-info.java | 2 +- .../http/ssl/CustomProtocolsSSLFactory.java | 2 +- .../org/dromara/hutool/http/ssl/SSLInfo.java | 2 +- .../dromara/hutool/http/ssl/package-info.java | 2 +- .../dromara/hutool/http/useragent/Browser.java | 2 +- .../hutool/http/useragent/BrowserEngine.java | 2 +- .../org/dromara/hutool/http/useragent/OS.java | 2 +- .../dromara/hutool/http/useragent/Platform.java | 2 +- .../dromara/hutool/http/useragent/UserAgent.java | 2 +- .../hutool/http/useragent/UserAgentInfo.java | 2 +- .../hutool/http/useragent/UserAgentParser.java | 2 +- .../hutool/http/useragent/UserAgentUtil.java | 2 +- .../hutool/http/useragent/package-info.java | 2 +- .../hutool/http/webservice/SoapClient.java | 2 +- .../hutool/http/webservice/SoapProtocol.java | 2 +- .../http/webservice/SoapRuntimeException.java | 2 +- .../dromara/hutool/http/webservice/SoapUtil.java | 2 +- .../hutool/http/webservice/package-info.java | 2 +- ...romara.hutool.http.client.engine.ClientEngine | 2 +- .../dromara/hutool/json/InternalJSONUtil.java | 2 +- .../main/java/org/dromara/hutool/json/JSON.java | 2 +- .../java/org/dromara/hutool/json/JSONArray.java | 2 +- .../java/org/dromara/hutool/json/JSONConfig.java | 2 +- .../org/dromara/hutool/json/JSONException.java | 2 +- .../java/org/dromara/hutool/json/JSONGetter.java | 2 +- .../java/org/dromara/hutool/json/JSONObject.java | 2 +- .../org/dromara/hutool/json/JSONObjectIter.java | 2 +- .../java/org/dromara/hutool/json/JSONParser.java | 2 +- .../dromara/hutool/json/JSONStrFormatter.java | 2 +- .../org/dromara/hutool/json/JSONSupport.java | 2 +- .../org/dromara/hutool/json/JSONTokener.java | 2 +- .../java/org/dromara/hutool/json/JSONUtil.java | 2 +- .../hutool/json/convert/JSONConverter.java | 2 +- .../json/convert/JSONGetterValueProvider.java | 2 +- .../hutool/json/convert/package-info.java | 2 +- .../hutool/json/engine/AbstractJSONEngine.java | 2 +- .../hutool/json/engine/FastJSON2Engine.java | 2 +- .../dromara/hutool/json/engine/GsonEngine.java | 2 +- .../hutool/json/engine/HutoolJSONEngine.java | 2 +- .../dromara/hutool/json/engine/JSONEngine.java | 2 +- .../hutool/json/engine/JSONEngineConfig.java | 2 +- .../hutool/json/engine/JSONEngineFactory.java | 2 +- .../hutool/json/engine/JacksonEngine.java | 2 +- .../dromara/hutool/json/engine/package-info.java | 2 +- .../java/org/dromara/hutool/json/jwt/Claims.java | 2 +- .../java/org/dromara/hutool/json/jwt/JWT.java | 2 +- .../dromara/hutool/json/jwt/JWTException.java | 2 +- .../org/dromara/hutool/json/jwt/JWTHeader.java | 2 +- .../org/dromara/hutool/json/jwt/JWTPayload.java | 2 +- .../org/dromara/hutool/json/jwt/JWTUtil.java | 2 +- .../dromara/hutool/json/jwt/JWTValidator.java | 2 +- .../hutool/json/jwt/RegisteredPayload.java | 2 +- .../dromara/hutool/json/jwt/package-info.java | 2 +- .../hutool/json/jwt/signers/AlgorithmUtil.java | 2 +- .../json/jwt/signers/AsymmetricJWTSigner.java | 2 +- .../json/jwt/signers/EllipticCurveJWTSigner.java | 2 +- .../hutool/json/jwt/signers/HMacJWTSigner.java | 2 +- .../hutool/json/jwt/signers/JWTSigner.java | 2 +- .../hutool/json/jwt/signers/JWTSignerUtil.java | 2 +- .../hutool/json/jwt/signers/NoneJWTSigner.java | 2 +- .../hutool/json/jwt/signers/package-info.java | 2 +- .../hutool/json/mapper/JSONArrayMapper.java | 2 +- .../hutool/json/mapper/JSONObjectMapper.java | 2 +- .../hutool/json/mapper/JSONValueMapper.java | 2 +- .../dromara/hutool/json/mapper/package-info.java | 2 +- .../org/dromara/hutool/json/package-info.java | 2 +- .../hutool/json/serialize/DateJSONString.java | 2 +- .../json/serialize/GlobalSerializeMapping.java | 2 +- .../json/serialize/JSONArraySerializer.java | 2 +- .../hutool/json/serialize/JSONDeserializer.java | 2 +- .../json/serialize/JSONObjectSerializer.java | 2 +- .../hutool/json/serialize/JSONSerializer.java | 2 +- .../hutool/json/serialize/JSONStringer.java | 2 +- .../serialize/TemporalAccessorSerializer.java | 2 +- .../hutool/json/serialize/package-info.java | 2 +- .../hutool/json/writer/BooleanValueWriter.java | 2 +- .../hutool/json/writer/ClassValueWriter.java | 2 +- .../hutool/json/writer/DateValueWriter.java | 2 +- .../hutool/json/writer/GlobalValueWriters.java | 2 +- .../json/writer/JSONStringValueWriter.java | 2 +- .../hutool/json/writer/JSONValueWriter.java | 2 +- .../dromara/hutool/json/writer/JSONWriter.java | 2 +- .../hutool/json/writer/JdkValueWriter.java | 2 +- .../hutool/json/writer/NumberValueWriter.java | 2 +- .../hutool/json/writer/NumberWriteMode.java | 2 +- .../dromara/hutool/json/writer/package-info.java | 2 +- .../dromara/hutool/json/xml/JSONXMLParser.java | 2 +- .../hutool/json/xml/JSONXMLSerializer.java | 2 +- .../org/dromara/hutool/json/xml/JSONXMLUtil.java | 2 +- .../org/dromara/hutool/json/xml/ParseConfig.java | 2 +- .../org/dromara/hutool/json/xml/XMLTokener.java | 2 +- .../dromara/hutool/json/xml/package-info.java | 2 +- .../org.dromara.hutool.json.engine.JSONEngine | 2 +- .../org/dromara/hutool/log/AbsLogEngine.java | 2 +- .../java/org/dromara/hutool/log/AbstractLog.java | 2 +- .../main/java/org/dromara/hutool/log/Log.java | 2 +- .../java/org/dromara/hutool/log/LogFactory.java | 2 +- .../java/org/dromara/hutool/log/LogUtil.java | 2 +- .../org/dromara/hutool/log/engine/LogEngine.java | 2 +- .../hutool/log/engine/LogEngineFactory.java | 2 +- .../log/engine/commons/ApacheCommonsLog.java | 2 +- .../engine/commons/ApacheCommonsLog4JLog.java | 2 +- .../engine/commons/ApacheCommonsLogEngine.java | 2 +- .../hutool/log/engine/commons/package-info.java | 2 +- .../log/engine/console/ConsoleColorLog.java | 2 +- .../engine/console/ConsoleColorLogEngine.java | 2 +- .../hutool/log/engine/console/ConsoleLog.java | 2 +- .../log/engine/console/ConsoleLogEngine.java | 2 +- .../hutool/log/engine/console/package-info.java | 2 +- .../hutool/log/engine/jboss/JbossLog.java | 2 +- .../hutool/log/engine/jboss/JbossLogEngine.java | 2 +- .../hutool/log/engine/jboss/package-info.java | 2 +- .../dromara/hutool/log/engine/jdk/JdkLog.java | 2 +- .../hutool/log/engine/jdk/JdkLogEngine.java | 2 +- .../hutool/log/engine/jdk/package-info.java | 2 +- .../hutool/log/engine/log4j/Log4jLog.java | 2 +- .../hutool/log/engine/log4j/Log4jLogEngine.java | 2 +- .../hutool/log/engine/log4j/package-info.java | 2 +- .../hutool/log/engine/log4j2/Log4j2Log.java | 2 +- .../log/engine/log4j2/Log4j2LogEngine.java | 2 +- .../hutool/log/engine/log4j2/package-info.java | 2 +- .../dromara/hutool/log/engine/package-info.java | 2 +- .../hutool/log/engine/slf4j/Slf4jLog.java | 2 +- .../hutool/log/engine/slf4j/Slf4jLogEngine.java | 2 +- .../hutool/log/engine/slf4j/package-info.java | 2 +- .../hutool/log/engine/tinylog/TinyLog.java | 2 +- .../hutool/log/engine/tinylog/TinyLog2.java | 2 +- .../log/engine/tinylog/TinyLog2Engine.java | 2 +- .../hutool/log/engine/tinylog/TinyLogEngine.java | 2 +- .../hutool/log/engine/tinylog/package-info.java | 2 +- .../org/dromara/hutool/log/level/DebugLog.java | 2 +- .../org/dromara/hutool/log/level/ErrorLog.java | 2 +- .../org/dromara/hutool/log/level/InfoLog.java | 2 +- .../java/org/dromara/hutool/log/level/Level.java | 2 +- .../org/dromara/hutool/log/level/TraceLog.java | 2 +- .../org/dromara/hutool/log/level/WarnLog.java | 2 +- .../dromara/hutool/log/level/package-info.java | 2 +- .../org/dromara/hutool/log/package-info.java | 2 +- .../org.dromara.hutool.log.engine.LogEngine | 2 +- .../org/dromara/hutool/poi/GlobalPoiConfig.java | 2 +- .../org/dromara/hutool/poi/POIException.java | 2 +- .../java/org/dromara/hutool/poi/PoiChecker.java | 2 +- .../dromara/hutool/poi/csv/CsvBaseReader.java | 2 +- .../org/dromara/hutool/poi/csv/CsvConfig.java | 2 +- .../java/org/dromara/hutool/poi/csv/CsvData.java | 2 +- .../org/dromara/hutool/poi/csv/CsvParser.java | 2 +- .../dromara/hutool/poi/csv/CsvReadConfig.java | 2 +- .../org/dromara/hutool/poi/csv/CsvReader.java | 2 +- .../java/org/dromara/hutool/poi/csv/CsvRow.java | 2 +- .../java/org/dromara/hutool/poi/csv/CsvUtil.java | 2 +- .../dromara/hutool/poi/csv/CsvWriteConfig.java | 2 +- .../org/dromara/hutool/poi/csv/CsvWriter.java | 2 +- .../org/dromara/hutool/poi/csv/package-info.java | 2 +- .../org/dromara/hutool/poi/excel/ExcelBase.java | 2 +- .../dromara/hutool/poi/excel/ExcelConfig.java | 2 +- .../dromara/hutool/poi/excel/ExcelDateUtil.java | 2 +- .../hutool/poi/excel/ExcelExtractorUtil.java | 2 +- .../dromara/hutool/poi/excel/ExcelFileUtil.java | 2 +- .../dromara/hutool/poi/excel/ExcelImgType.java | 2 +- .../dromara/hutool/poi/excel/ExcelImgUtil.java | 2 +- .../org/dromara/hutool/poi/excel/ExcelUtil.java | 2 +- .../org/dromara/hutool/poi/excel/RowUtil.java | 2 +- .../org/dromara/hutool/poi/excel/SheetUtil.java | 2 +- .../hutool/poi/excel/SimpleClientAnchor.java | 2 +- .../dromara/hutool/poi/excel/WorkbookUtil.java | 2 +- .../hutool/poi/excel/cell/CellRangeUtil.java | 2 +- .../hutool/poi/excel/cell/CellReferenceUtil.java | 2 +- .../dromara/hutool/poi/excel/cell/CellUtil.java | 2 +- .../dromara/hutool/poi/excel/cell/NullCell.java | 2 +- .../poi/excel/cell/editors/CellEditor.java | 2 +- .../excel/cell/editors/NumericToIntEditor.java | 2 +- .../poi/excel/cell/editors/TrimEditor.java | 2 +- .../poi/excel/cell/editors/package-info.java | 2 +- .../hutool/poi/excel/cell/package-info.java | 2 +- .../excel/cell/setters/BooleanCellSetter.java | 2 +- .../excel/cell/setters/CalendarCellSetter.java | 2 +- .../poi/excel/cell/setters/CellSetter.java | 2 +- .../excel/cell/setters/CellSetterFactory.java | 2 +- .../cell/setters/CharSequenceCellSetter.java | 2 +- .../poi/excel/cell/setters/DateCellSetter.java | 2 +- .../excel/cell/setters/EscapeStrCellSetter.java | 2 +- .../excel/cell/setters/HyperlinkCellSetter.java | 2 +- .../poi/excel/cell/setters/ImgCellSetter.java | 2 +- .../poi/excel/cell/setters/NullCellSetter.java | 2 +- .../poi/excel/cell/setters/NumberCellSetter.java | 2 +- .../excel/cell/setters/RichTextCellSetter.java | 2 +- .../cell/setters/TemporalAccessorCellSetter.java | 2 +- .../poi/excel/cell/setters/package-info.java | 2 +- .../hutool/poi/excel/cell/values/CellValue.java | 2 +- .../excel/cell/values/CompositeCellValue.java | 2 +- .../poi/excel/cell/values/ErrorCellValue.java | 2 +- .../poi/excel/cell/values/FormulaCellValue.java | 2 +- .../poi/excel/cell/values/NumericCellValue.java | 2 +- .../poi/excel/cell/values/package-info.java | 2 +- .../dromara/hutool/poi/excel/package-info.java | 2 +- .../hutool/poi/excel/reader/ExcelReadConfig.java | 2 +- .../hutool/poi/excel/reader/ExcelReader.java | 2 +- .../hutool/poi/excel/reader/package-info.java | 2 +- .../excel/reader/sheet/AbstractSheetReader.java | 2 +- .../poi/excel/reader/sheet/BeanSheetReader.java | 2 +- .../excel/reader/sheet/ColumnSheetReader.java | 2 +- .../poi/excel/reader/sheet/ListSheetReader.java | 2 +- .../poi/excel/reader/sheet/MapSheetReader.java | 2 +- .../poi/excel/reader/sheet/SheetReader.java | 2 +- .../poi/excel/reader/sheet/WalkSheetReader.java | 2 +- .../poi/excel/reader/sheet/package-info.java | 2 +- .../hutool/poi/excel/sax/AttributeName.java | 2 +- .../hutool/poi/excel/sax/CellDataType.java | 2 +- .../hutool/poi/excel/sax/ElementName.java | 2 +- .../hutool/poi/excel/sax/Excel03SaxReader.java | 2 +- .../hutool/poi/excel/sax/Excel07SaxReader.java | 2 +- .../hutool/poi/excel/sax/ExcelSaxReader.java | 2 +- .../hutool/poi/excel/sax/ExcelSaxUtil.java | 2 +- .../poi/excel/sax/SheetDataSaxHandler.java | 2 +- .../hutool/poi/excel/sax/SheetRidReader.java | 2 +- .../excel/sax/handler/AbstractRowHandler.java | 2 +- .../poi/excel/sax/handler/BeanRowHandler.java | 2 +- .../poi/excel/sax/handler/MapRowHandler.java | 2 +- .../hutool/poi/excel/sax/handler/RowHandler.java | 2 +- .../poi/excel/sax/handler/package-info.java | 2 +- .../hutool/poi/excel/sax/package-info.java | 2 +- .../dromara/hutool/poi/excel/style/Align.java | 2 +- .../hutool/poi/excel/style/CellBorderStyle.java | 2 +- .../hutool/poi/excel/style/DefaultStyleSet.java | 2 +- .../hutool/poi/excel/style/LineStyle.java | 2 +- .../hutool/poi/excel/style/ShapeConfig.java | 2 +- .../dromara/hutool/poi/excel/style/StyleSet.java | 2 +- .../hutool/poi/excel/style/StyleUtil.java | 2 +- .../hutool/poi/excel/style/package-info.java | 2 +- .../hutool/poi/excel/writer/BigExcelWriter.java | 2 +- .../poi/excel/writer/DataValidationUtil.java | 2 +- .../poi/excel/writer/ExcelDrawingUtil.java | 2 +- .../poi/excel/writer/ExcelWriteConfig.java | 2 +- .../hutool/poi/excel/writer/ExcelWriter.java | 2 +- .../hutool/poi/excel/writer/TemplateContext.java | 2 +- .../hutool/poi/excel/writer/package-info.java | 2 +- .../dromara/hutool/poi/ofd/DocConverterUtil.java | 2 +- .../org/dromara/hutool/poi/ofd/OfdWriter.java | 2 +- .../org/dromara/hutool/poi/ofd/package-info.java | 2 +- .../org/dromara/hutool/poi/package-info.java | 2 +- .../org/dromara/hutool/poi/word/DocUtil.java | 2 +- .../dromara/hutool/poi/word/PictureTypeUtil.java | 2 +- .../org/dromara/hutool/poi/word/TableUtil.java | 2 +- .../dromara/hutool/poi/word/Word07Writer.java | 2 +- .../org/dromara/hutool/poi/word/WordUtil.java | 2 +- .../dromara/hutool/poi/word/package-info.java | 2 +- .../org/dromara/hutool/setting/AbsSetting.java | 2 +- .../org/dromara/hutool/setting/GroupedMap.java | 2 +- .../org/dromara/hutool/setting/GroupedSet.java | 2 +- .../java/org/dromara/hutool/setting/Setting.java | 2 +- .../dromara/hutool/setting/SettingException.java | 2 +- .../dromara/hutool/setting/SettingLoader.java | 2 +- .../org/dromara/hutool/setting/SettingUtil.java | 2 +- .../org/dromara/hutool/setting/package-info.java | 2 +- .../hutool/setting/profile/GlobalProfile.java | 2 +- .../dromara/hutool/setting/profile/Profile.java | 2 +- .../hutool/setting/profile/package-info.java | 2 +- .../org/dromara/hutool/setting/props/Props.java | 2 +- .../dromara/hutool/setting/props/PropsUtil.java | 2 +- .../hutool/setting/props/package-info.java | 2 +- .../org/dromara/hutool/setting/toml/Toml.java | 2 +- .../dromara/hutool/setting/toml/TomlReader.java | 2 +- .../dromara/hutool/setting/toml/TomlWriter.java | 2 +- .../hutool/setting/toml/package-info.java | 2 +- .../dromara/hutool/setting/yaml/YamlUtil.java | 2 +- .../hutool/setting/yaml/package-info.java | 2 +- .../org/dromara/hutool/socket/ChannelUtil.java | 2 +- .../org/dromara/hutool/socket/SocketConfig.java | 2 +- .../hutool/socket/SocketRuntimeException.java | 2 +- .../org/dromara/hutool/socket/SocketUtil.java | 2 +- .../dromara/hutool/socket/aio/AcceptHandler.java | 2 +- .../org/dromara/hutool/socket/aio/AioClient.java | 2 +- .../org/dromara/hutool/socket/aio/AioServer.java | 2 +- .../dromara/hutool/socket/aio/AioSession.java | 2 +- .../org/dromara/hutool/socket/aio/IoAction.java | 2 +- .../dromara/hutool/socket/aio/ReadHandler.java | 2 +- .../hutool/socket/aio/SimpleIoAction.java | 2 +- .../dromara/hutool/socket/aio/package-info.java | 2 +- .../dromara/hutool/socket/nio/AcceptHandler.java | 2 +- .../hutool/socket/nio/ChannelHandler.java | 2 +- .../dromara/hutool/socket/nio/ChannelUtil.java | 2 +- .../org/dromara/hutool/socket/nio/NioClient.java | 2 +- .../org/dromara/hutool/socket/nio/NioServer.java | 2 +- .../org/dromara/hutool/socket/nio/Operation.java | 2 +- .../dromara/hutool/socket/nio/package-info.java | 2 +- .../org/dromara/hutool/socket/package-info.java | 2 +- .../hutool/socket/protocol/MsgDecoder.java | 2 +- .../hutool/socket/protocol/MsgEncoder.java | 2 +- .../dromara/hutool/socket/protocol/Protocol.java | 2 +- .../hutool/socket/protocol/package-info.java | 2 +- .../org/dromara/hutool/swing/DesktopUtil.java | 2 +- .../java/org/dromara/hutool/swing/RobotUtil.java | 2 +- .../org/dromara/hutool/swing/ScreenUtil.java | 2 +- .../hutool/swing/captcha/AbstractCaptcha.java | 2 +- .../hutool/swing/captcha/CaptchaUtil.java | 2 +- .../hutool/swing/captcha/CircleCaptcha.java | 2 +- .../dromara/hutool/swing/captcha/GifCaptcha.java | 2 +- .../dromara/hutool/swing/captcha/ICaptcha.java | 2 +- .../hutool/swing/captcha/LineCaptcha.java | 2 +- .../hutool/swing/captcha/ShearCaptcha.java | 2 +- .../captcha/generator/AbstractGenerator.java | 2 +- .../swing/captcha/generator/CodeGenerator.java | 2 +- .../swing/captcha/generator/MathGenerator.java | 2 +- .../swing/captcha/generator/RandomGenerator.java | 2 +- .../swing/captcha/generator/package-info.java | 2 +- .../hutool/swing/captcha/package-info.java | 2 +- .../swing/clipboard/ClipboardListener.java | 2 +- .../hutool/swing/clipboard/ClipboardMonitor.java | 2 +- .../hutool/swing/clipboard/ClipboardUtil.java | 2 +- .../hutool/swing/clipboard/ImageSelection.java | 2 +- .../swing/clipboard/StrClipboardListener.java | 2 +- .../hutool/swing/clipboard/package-info.java | 2 +- .../hutool/swing/img/BackgroundRemoval.java | 2 +- .../dromara/hutool/swing/img/DisplayText.java | 2 +- .../org/dromara/hutool/swing/img/FontUtil.java | 2 +- .../dromara/hutool/swing/img/GraphicsUtil.java | 2 +- .../java/org/dromara/hutool/swing/img/Img.java | 2 +- .../dromara/hutool/swing/img/ImgMetaUtil.java | 2 +- .../org/dromara/hutool/swing/img/ImgUtil.java | 2 +- .../org/dromara/hutool/swing/img/ImgWriter.java | 2 +- .../hutool/swing/img/RenderingHintsBuilder.java | 2 +- .../org/dromara/hutool/swing/img/ScaleType.java | 2 +- .../hutool/swing/img/color/Ansi4bitMapping.java | 2 +- .../hutool/swing/img/color/Ansi8bitMapping.java | 2 +- .../hutool/swing/img/color/AnsiLabMapping.java | 2 +- .../hutool/swing/img/color/ColorUtil.java | 2 +- .../dromara/hutool/swing/img/color/LabColor.java | 2 +- .../hutool/swing/img/color/package-info.java | 2 +- .../dromara/hutool/swing/img/package-info.java | 2 +- .../org/dromara/hutool/swing/package-info.java | 2 +- 1763 files changed, 1778 insertions(+), 1762 deletions(-) diff --git a/hutool-all/src/main/java/org/dromara/hutool/Hutool.java b/hutool-all/src/main/java/org/dromara/hutool/Hutool.java index 5bbb46b4d..f9b9b2c1e 100644 --- a/hutool-all/src/main/java/org/dromara/hutool/Hutool.java +++ b/hutool-all/src/main/java/org/dromara/hutool/Hutool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-all/src/main/java/org/dromara/hutool/package-info.java b/hutool-all/src/main/java/org/dromara/hutool/package-info.java index 032b3556c..6cc5ff5f4 100644 --- a/hutool-all/src/main/java/org/dromara/hutool/package-info.java +++ b/hutool-all/src/main/java/org/dromara/hutool/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/Alias.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/Alias.java index ff4490819..d484026b3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/Alias.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/Alias.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotatedElementUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotatedElementUtil.java index d1764be54..9c6ad7f31 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotatedElementUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotatedElementUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMapping.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMapping.java index 6395f2d13..7b468a127 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMapping.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMappingProxy.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMappingProxy.java index b3afd8fed..9edfeab39 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMappingProxy.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationMappingProxy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationProxy.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationProxy.java index 588e48f37..ccf63660b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationProxy.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationProxy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationUtil.java index 71e7b22da..0bcce0d46 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/AnnotationUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/GenericAnnotationMapping.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/GenericAnnotationMapping.java index e8d5b205f..4d9944762 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/GenericAnnotationMapping.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/GenericAnnotationMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/PropIgnore.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/PropIgnore.java index 139548642..c1b8a9c21 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/PropIgnore.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/PropIgnore.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/RepeatableAnnotationCollector.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/RepeatableAnnotationCollector.java index 59a1778b4..e9a81fcde 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/RepeatableAnnotationCollector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/RepeatableAnnotationCollector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/ResolvedAnnotationMapping.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/ResolvedAnnotationMapping.java index 2006ec7f6..881cb3b63 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/ResolvedAnnotationMapping.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/ResolvedAnnotationMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/CombinationAnnotatedElement.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/CombinationAnnotatedElement.java index e2eff43d0..ef9dc06bd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/CombinationAnnotatedElement.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/CombinationAnnotatedElement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/HierarchicalAnnotatedElements.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/HierarchicalAnnotatedElements.java index 56fca126a..c54f948f6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/HierarchicalAnnotatedElements.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/HierarchicalAnnotatedElements.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/MetaAnnotatedElement.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/MetaAnnotatedElement.java index 42bff55cc..8570b6f0b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/MetaAnnotatedElement.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/MetaAnnotatedElement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/RepeatableMetaAnnotatedElement.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/RepeatableMetaAnnotatedElement.java index 9b8f9b793..4ac1633f4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/RepeatableMetaAnnotatedElement.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/RepeatableMetaAnnotatedElement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/package-info.java index 39be23afc..3069d63d6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/elements/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/package-info.java index 975f312c5..a2264d9d7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/annotation/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/annotation/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayUtil.java index 95238be17..825c85859 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayWrapper.java index 824681ef2..a3ebe50c9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/array/ArrayWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/array/PrimitiveArrayUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/array/PrimitiveArrayUtil.java index 14334625d..6b4bc03f9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/array/PrimitiveArrayUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/array/PrimitiveArrayUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/array/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/array/package-info.java index 68205e7b6..253a60184 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/array/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/array/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDesc.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDesc.java index f6e537e22..6a7104dd9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDesc.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDesc.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDescFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDescFactory.java index 8fa65efbd..a4acb7e06 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDescFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanDescFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanException.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanException.java index 3d38fd05e..4c0a8f889 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanInfoCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanInfoCache.java index 496589722..e853e78d0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanInfoCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanInfoCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanUtil.java index 7dde4305a..cf269a499 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/BeanUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/DynaBean.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/DynaBean.java index 4ba2ab860..6675a0cb1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/DynaBean.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/DynaBean.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/NullWrapperBean.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/NullWrapperBean.java index 3a95c8aae..e507b51b3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/NullWrapperBean.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/NullWrapperBean.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/PropDesc.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/PropDesc.java index 35be20218..5ea520a2e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/PropDesc.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/PropDesc.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordBeanDesc.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordBeanDesc.java index 55d3b3fcc..04bcb521c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordBeanDesc.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordBeanDesc.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordUtil.java index 0c4135843..70ee81582 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/RecordUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/SimpleBeanDesc.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/SimpleBeanDesc.java index 4c71952b2..30fc5f7c4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/SimpleBeanDesc.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/SimpleBeanDesc.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/StrictBeanDesc.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/StrictBeanDesc.java index de5fa2a6a..ff6dfed08 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/StrictBeanDesc.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/StrictBeanDesc.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/AbsCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/AbsCopier.java index 125a972fb..c4577a5db 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/AbsCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/AbsCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanCopier.java index 283e49f47..465a2ed5c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToBeanCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToBeanCopier.java index f845f9852..83aae0a17 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToBeanCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToBeanCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToMapCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToMapCopier.java index dbd4c2b96..e90df6a37 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToMapCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/BeanToMapCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/CopyOptions.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/CopyOptions.java index 38ecdcd88..98abb90a9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/CopyOptions.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/CopyOptions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToBeanCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToBeanCopier.java index 98e48bbbc..9f30a370c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToBeanCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToBeanCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java index a5996e729..d7f2571ff 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/MapToMapCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProvider.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProvider.java index be851639e..3eeba80b3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProvider.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProviderToBeanCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProviderToBeanCopier.java index 35c4c4bbe..b976fc406 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProviderToBeanCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/ValueProviderToBeanCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/package-info.java index 9e40ba990..f686a36a4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/BeanValueProvider.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/BeanValueProvider.java index 972b28668..28c2a0d2a 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/BeanValueProvider.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/BeanValueProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/DynaBeanValueProvider.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/DynaBeanValueProvider.java index b4f9d7b25..2361cab6c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/DynaBeanValueProvider.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/DynaBeanValueProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/MapValueProvider.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/MapValueProvider.java index bee0f12ce..a8ee40463 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/MapValueProvider.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/MapValueProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/package-info.java index 6f27336e0..3df8fc01c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/copier/provider/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/package-info.java index 8fd94ab6e..69800a274 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/AbstractBeanDesc.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/AbstractBeanDesc.java index e83935c1e..45c390dd8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/AbstractBeanDesc.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/AbstractBeanDesc.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/BeanPath.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/BeanPath.java index 06243300d..f91831d78 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/BeanPath.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/BeanPath.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/EmptyNode.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/EmptyNode.java index 27c450309..92ac30612 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/EmptyNode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/EmptyNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/ListNode.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/ListNode.java index aee1e2894..2fb039ae1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/ListNode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/ListNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NameNode.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NameNode.java index db3123edf..574c049ef 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NameNode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NameNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/Node.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/Node.java index 53452493c..9f19537b4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/Node.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/Node.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NodeFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NodeFactory.java index 8b7d3ca64..719599033 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NodeFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/NodeFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/RangeNode.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/RangeNode.java index 0580029f0..f87bd431b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/RangeNode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/RangeNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/package-info.java index 579f7df75..78e5660ab 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/node/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/package-info.java index d642c58ae..08500f122 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/bean/path/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/Cache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/Cache.java index ea8fcd3fb..f6b463f59 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/Cache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/Cache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheListener.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheListener.java index 819660740..18a9ce5d4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheListener.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheListener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheUtil.java index c19cafc70..73a2b298e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/CacheUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/GlobalPruneTimer.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/GlobalPruneTimer.java index 9a516c706..74ecd7aea 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/GlobalPruneTimer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/GlobalPruneTimer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/SimpleCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/SimpleCache.java index 177344f69..2de914c95 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/SimpleCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/SimpleCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/AbstractFileCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/AbstractFileCache.java index f6259d7f4..d6225d8e9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/AbstractFileCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/AbstractFileCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LFUFileCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LFUFileCache.java index 5293d6c6d..6412f7945 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LFUFileCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LFUFileCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LRUFileCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LRUFileCache.java index fc58b0a61..e874bed2c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LRUFileCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/LRUFileCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/package-info.java index 1cbfd54d4..a78d40a13 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/file/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/AbstractCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/AbstractCache.java index e35aab979..6707a2da8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/AbstractCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/AbstractCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObj.java index 073b9692a..935d7af98 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObjIterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObjIterator.java index 59e89bf0d..05325f31e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObjIterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheObjIterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheValuesIterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheValuesIterator.java index e3cff3dc4..64cc7bb17 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheValuesIterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/CacheValuesIterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/FIFOCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/FIFOCache.java index d290f0aac..487e91908 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/FIFOCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/FIFOCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LFUCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LFUCache.java index fcff50b01..97099d793 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LFUCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LFUCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LRUCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LRUCache.java index befb04938..2000764bc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LRUCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/LRUCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/NoCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/NoCache.java index afa63609e..006101905 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/NoCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/NoCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/ReentrantCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/ReentrantCache.java index eef764355..25a789bc8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/ReentrantCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/ReentrantCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/StampedCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/StampedCache.java index 6d17ef741..74fde715c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/StampedCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/StampedCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/TimedCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/TimedCache.java index dbff70fa5..585c75362 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/TimedCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/TimedCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/WeakCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/WeakCache.java index 567c6c8f3..d968b99cf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/WeakCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/WeakCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/package-info.java index f850db025..33b293a7a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/impl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/cache/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/cache/package-info.java index b9cfbe398..2094ec263 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/cache/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/cache/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ClassLoaderUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ClassLoaderUtil.java index 5045158b7..105a04efc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ClassLoaderUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ClassLoaderUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/JarClassLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/JarClassLoader.java index bf7e5c45b..de25bbea9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/JarClassLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/JarClassLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ResourceClassLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ResourceClassLoader.java index d3c5660d7..67ef757f9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ResourceClassLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/ResourceClassLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/package-info.java index 75cf3099e..4725a5183 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/classloader/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/classloader/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Caesar.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Caesar.java index efa013af7..d02408d95 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Caesar.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Caesar.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Decoder.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Decoder.java index 82b8da61d..f4bfce5a1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Decoder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Decoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Encoder.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Encoder.java index b15e5b01d..d6a2256c7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Encoder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Encoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Hashids.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Hashids.java index aab81c26e..e85ff47a3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Hashids.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Hashids.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Luhn.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Luhn.java index 3b0e6c811..e03e5dafb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Luhn.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Luhn.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Morse.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Morse.java index 745adb56f..798fbfc8a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Morse.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Morse.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Number128.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Number128.java index 222d8b903..2d4cbb802 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Number128.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Number128.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/PercentCodec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/PercentCodec.java index 3e5f439bd..5a77b5414 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/PercentCodec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/PercentCodec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/PunyCode.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/PunyCode.java index a84402fe0..9e7227df9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/PunyCode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/PunyCode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/RadixUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/RadixUtil.java index 6c8875d25..9dbe3d585 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/RadixUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/RadixUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Rot.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Rot.java index c7ded6ec8..78a2aadb0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/Rot.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/Rot.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base16Codec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base16Codec.java index fad24ff89..061588228 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base16Codec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base16Codec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32.java index 62a35f6e7..da8fbccf2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32Codec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32Codec.java index 1907fa3b5..dfc5ce6f8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32Codec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base32Codec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58.java index 17a5581bb..974371b72 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58Codec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58Codec.java index b258cc582..a8e55ad48 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58Codec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base58Codec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62.java index 7086002be..466c236d3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62Codec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62Codec.java index 5503d1ea4..6f61045b5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62Codec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base62Codec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64.java index f011b86cd..807887163 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64Decoder.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64Decoder.java index 4b85ed338..aebf5014a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64Decoder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Base64Decoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/CrockfordBase32Codec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/CrockfordBase32Codec.java index 0cad65315..05bec6a8c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/CrockfordBase32Codec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/CrockfordBase32Codec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Hex.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Hex.java index 61508a365..77ec59b7d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Hex.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Hex.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/HexUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/HexUtil.java index 2534e1cc2..9457a3d67 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/HexUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/HexUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Z85Codec.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Z85Codec.java index ad43e23b0..f577bcf6f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Z85Codec.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/Z85Codec.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/package-info.java index 9973a79d4..bf4331fbb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/binary/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/CityHash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/CityHash.java index 48093edf4..d1afef036 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/CityHash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/CityHash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/ConsistentHash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/ConsistentHash.java index 91dfc807d..c4dd7132c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/ConsistentHash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/ConsistentHash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash128.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash128.java index d3427048d..d41f2eab3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash128.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash128.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash32.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash32.java index f723efadd..9bd4e75c0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash32.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash32.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash64.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash64.java index 05e9c13e6..622baa70d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash64.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Hash64.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/HashUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/HashUtil.java index 2edebb224..985ec0839 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/HashUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/HashUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/KetamaHash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/KetamaHash.java index 48bc95ce6..f03219c65 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/KetamaHash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/KetamaHash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/MurmurHash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/MurmurHash.java index daccac6d4..9e9fc6d17 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/MurmurHash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/MurmurHash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Simhash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Simhash.java index 418e5a40d..c8082becd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Simhash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/Simhash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/AbstractMetroHash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/AbstractMetroHash.java index 904572932..2743d01b0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/AbstractMetroHash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/AbstractMetroHash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash.java index f4e6c6a03..7649d7ba1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash128.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash128.java index 9318c4d9e..13cc34e6f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash128.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash128.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash64.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash64.java index a3c65e133..db5439cdd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash64.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/MetroHash64.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/package-info.java index a441779c1..70373740e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/metro/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/package-info.java index 6f5428efd..fa39d8a30 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/hash/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/codec/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/codec/package-info.java index a2c2167eb..d2fc5fe57 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/codec/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/codec/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedCollection.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedCollection.java index 162e06d99..dc35de1fb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedCollection.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedCollection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedList.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedList.java index 522e48479..82c369948 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedList.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/BoundedList.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollStreamUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollStreamUtil.java index b25368216..188d83225 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollStreamUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollStreamUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollUtil.java index c57aa4eb4..16e9f8ff2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollectionOperation.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollectionOperation.java index 1f8851a2f..abefdaa2d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollectionOperation.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/CollectionOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/ConcurrentHashSet.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/ConcurrentHashSet.java index 69e93242b..d0ca67e44 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/ConcurrentHashSet.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/ConcurrentHashSet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListUtil.java index 949997d8b..b527ff2c0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListWrapper.java index 3a7b13b64..39fc4e5e2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/ListWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/RingIndexUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/RingIndexUtil.java index bd48bb351..7d17b1caa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/RingIndexUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/RingIndexUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/SpliteratorUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/SpliteratorUtil.java index 08317e336..c5ae168d3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/SpliteratorUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/SpliteratorUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransCollection.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransCollection.java index 32ea39677..4499d8765 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransCollection.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransCollection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransSpliterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransSpliterator.java index 6e67bef93..b48d0aa95 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransSpliterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/TransSpliterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ArrayIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ArrayIter.java index 616bebe08..c6e4d1593 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ArrayIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ArrayIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ComputeIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ComputeIter.java index d30d043df..da4977910 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ComputeIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ComputeIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/CopiedIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/CopiedIter.java index 6ad7f82a6..3dc6716a8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/CopiedIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/CopiedIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/EnumerationIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/EnumerationIter.java index f2873c1aa..088d2d828 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/EnumerationIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/EnumerationIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/FilterIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/FilterIter.java index 47742afb0..eaecfd24a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/FilterIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/FilterIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterChain.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterChain.java index 491b8bc03..5c3edc213 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterChain.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterChain.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterUtil.java index d32624961..801eaf4fa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterableIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterableIter.java index 2202a4b99..b9987c9d2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterableIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IterableIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IteratorEnumeration.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IteratorEnumeration.java index bd365caa5..0bc2e8dfc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IteratorEnumeration.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/IteratorEnumeration.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/LineIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/LineIter.java index 32395fb0e..fafc8d14f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/LineIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/LineIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/NodeListIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/NodeListIter.java index 5be571325..fcc187ca3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/NodeListIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/NodeListIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/PartitionIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/PartitionIter.java index ed2b06b1c..375ecaa50 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/PartitionIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/PartitionIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ResettableIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ResettableIter.java index fb6c5e716..b066c6673 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ResettableIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/ResettableIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/TransIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/TransIter.java index 2540fa4f4..6e4d44180 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/TransIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/TransIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/package-info.java index 91a8f9c27..cc7f19b18 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/iter/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/package-info.java index 69bf036da..3ba9cecfd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/AvgPartition.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/AvgPartition.java index e0af70e31..be1ad3b8d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/AvgPartition.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/AvgPartition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/Partition.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/Partition.java index c1a30f1fc..b53456b79 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/Partition.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/Partition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessAvgPartition.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessAvgPartition.java index 1da154da1..f9d38c652 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessAvgPartition.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessAvgPartition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessPartition.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessPartition.java index f51e80d7e..e446bd12b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessPartition.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/RandomAccessPartition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/package-info.java index d207d4cb7..dd9bb31e4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/partition/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/BoundedPriorityQueue.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/BoundedPriorityQueue.java index 97a139bb1..4a8dbf91f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/BoundedPriorityQueue.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/BoundedPriorityQueue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/CheckedLinkedBlockingQueue.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/CheckedLinkedBlockingQueue.java index d143cc7ea..83633d55d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/CheckedLinkedBlockingQueue.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/CheckedLinkedBlockingQueue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/DiscardingQueue.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/DiscardingQueue.java index 823037292..eb57f8ec0 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/DiscardingQueue.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/DiscardingQueue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/Linked.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/Linked.java index fdf00425d..0b7890edc 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/Linked.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/Linked.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/LinkedDeque.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/LinkedDeque.java index bd5f71a84..eb77b93d4 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/LinkedDeque.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/LinkedDeque.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/MemorySafeLinkedBlockingQueue.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/MemorySafeLinkedBlockingQueue.java index a5edaa44c..d7af6ab15 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/MemorySafeLinkedBlockingQueue.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/MemorySafeLinkedBlockingQueue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/package-info.java index 39bf956de..4d0c93c7f 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/queue/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetFromMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetFromMap.java index 8b9e2dba0..8048b3cd0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetFromMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetFromMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetUtil.java index 5376606eb..c12093578 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetWrapper.java index c5bd06b07..0f6ae57ec 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/SetWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/UniqueKeySet.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/UniqueKeySet.java index 1ba91442e..f474886d5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/UniqueKeySet.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/UniqueKeySet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/package-info.java index 0433e07e5..37ad2fe5e 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/collection/set/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ArrayIndexedComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ArrayIndexedComparator.java index 1bfbc6b7e..3ddcfeffa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ArrayIndexedComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ArrayIndexedComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorChain.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorChain.java index f1a8a7b29..7329aa4f4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorChain.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorChain.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorException.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorException.java index b03642bcd..a88731086 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/ComparatorException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/CompareUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/CompareUtil.java index 14ac61e80..0f35450d4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/CompareUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/CompareUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldComparator.java index 9335d8dea..0f149a108 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldsComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldsComparator.java index cdcc31301..9c3532566 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldsComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FieldsComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FuncComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FuncComparator.java index ca3ad9ad1..d8ec398d3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FuncComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/FuncComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/IndexedComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/IndexedComparator.java index b1951ead9..7278e8d8b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/IndexedComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/IndexedComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/InstanceComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/InstanceComparator.java index dacff933e..cdcf54934 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/InstanceComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/InstanceComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/LocaleComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/LocaleComparator.java index 0d1ea9f49..edd9cba14 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/LocaleComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/LocaleComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/NullComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/NullComparator.java index aac9e8fad..f6b527cb3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/NullComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/NullComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PinyinComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PinyinComparator.java index 648f88235..83265d9ea 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PinyinComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PinyinComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PropertyComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PropertyComparator.java index d3cdbe823..9cda08909 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PropertyComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/PropertyComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/StrLengthComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/StrLengthComparator.java index 595cf078c..c1756e4ad 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/StrLengthComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/StrLengthComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/VersionComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/VersionComparator.java index 36750ebbc..785e24405 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/VersionComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/VersionComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/WindowsExplorerStringComparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/WindowsExplorerStringComparator.java index 486cde9ab..2ebe05484 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/WindowsExplorerStringComparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/WindowsExplorerStringComparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/package-info.java index c069b7bec..38da360f2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/comparator/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/comparator/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/Deflate.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/Deflate.java index 609176aea..2ea8a6565 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/Deflate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/Deflate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/Gzip.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/Gzip.java index 4e866bdaf..b39853995 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/Gzip.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/Gzip.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/InflaterInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/InflaterInputStream.java index 4c4a1abfa..55c44bdd5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/InflaterInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/InflaterInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/OpcZipOutputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/OpcZipOutputStream.java index 529e05f0d..0eee88728 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/OpcZipOutputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/OpcZipOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/Zip64.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/Zip64.java index 6884a1d70..e0cdf84cf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/Zip64.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/Zip64.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipCopyVisitor.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipCopyVisitor.java index 1876e3c71..1531270c3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipCopyVisitor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipCopyVisitor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipFileResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipFileResource.java index 9fe5dcd9a..f523254d5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipFileResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipFileResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReader.java index 07d054209..f11907162 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReplacer.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReplacer.java index 877b29f77..231800ff8 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReplacer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipReplacer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipResource.java index 1456e8f49..e9de4b1f3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipSecurityUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipSecurityUtil.java index c8c88b797..c7012021f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipSecurityUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipSecurityUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipStreamResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipStreamResource.java index 3d57f0cfe..017993c59 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipStreamResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipStreamResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipUtil.java index 5ffd284ee..2803f40e8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipWriter.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipWriter.java index 48633270a..20f18d302 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipWriter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/ZipWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/compress/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/compress/package-info.java index 85e2c3055..1c55deb8d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/compress/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/compress/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/AbstractConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/AbstractConverter.java index 078e18aff..a57fe5a2f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/AbstractConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/AbstractConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/BasicType.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/BasicType.java index af74fc29f..f71fd1846 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/BasicType.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/BasicType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/CastUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/CastUtil.java index 2fa2d98c6..6126b71e3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/CastUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/CastUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/CompositeConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/CompositeConverter.java index 9cf6dcda4..704e0a3a3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/CompositeConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/CompositeConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/Convert.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/Convert.java index e8eb465ea..37e605b0a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/Convert.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/Convert.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/ConvertException.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/ConvertException.java index f5db2567b..15d351058 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/ConvertException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/ConvertException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/Converter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/Converter.java index 6fa043e58..81f645e91 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/Converter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/Converter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/RegisterConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/RegisterConverter.java index 53d8bbe31..fadcc5495 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/RegisterConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/RegisterConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ArrayConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ArrayConverter.java index b8346f0af..8ebc5fea2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ArrayConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ArrayConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicBooleanConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicBooleanConverter.java index 7401444a3..7c60de9e8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicBooleanConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicBooleanConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicIntegerArrayConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicIntegerArrayConverter.java index 2b7dd84c1..23afdd202 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicIntegerArrayConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicIntegerArrayConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicLongArrayConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicLongArrayConverter.java index f9d9e1f99..901aca99b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicLongArrayConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicLongArrayConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicReferenceConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicReferenceConverter.java index a4af2dd58..4a588793a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicReferenceConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/AtomicReferenceConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BeanConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BeanConverter.java index cb57ebd84..63e3865d7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BeanConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BeanConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BooleanConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BooleanConverter.java index 45dfcd198..d85f69680 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BooleanConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/BooleanConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CalendarConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CalendarConverter.java index 54f5242a3..4d08e6b23 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CalendarConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CalendarConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CastConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CastConverter.java index 630d12756..2735d46b4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CastConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CastConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharacterConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharacterConverter.java index 06d4ace11..f0405102e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharacterConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharacterConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharsetConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharsetConverter.java index d9c5ee893..5a8b58ed5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharsetConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CharsetConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ClassConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ClassConverter.java index 35a4ce4c9..61ef87a1c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ClassConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ClassConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CollectionConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CollectionConverter.java index 301490323..fe9c24a36 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CollectionConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CollectionConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CurrencyConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CurrencyConverter.java index 897ca990d..64bad6a1f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CurrencyConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/CurrencyConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DateConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DateConverter.java index 7fc4f96f9..ace4f10b6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DateConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DateConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DurationConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DurationConverter.java index 8f3ad2657..9a83651e9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DurationConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/DurationConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EntryConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EntryConverter.java index 3e5ab85d0..1c303fd87 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EntryConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EntryConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EnumConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EnumConverter.java index 5df627a57..9df63b84a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EnumConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/EnumConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/KBeanConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/KBeanConverter.java index 16d15b615..59ab7ebb2 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/KBeanConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/KBeanConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/LocaleConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/LocaleConverter.java index 938a335a8..fdac456e4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/LocaleConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/LocaleConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/MapConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/MapConverter.java index f296fc842..d653c365b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/MapConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/MapConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/NumberConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/NumberConverter.java index cb3da1b95..ad494b7ed 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/NumberConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/NumberConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptConverter.java index 69509509f..17062c3ee 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptionalConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptionalConverter.java index 0b0feb36f..91b3747a8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptionalConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/OptionalConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PairConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PairConverter.java index a92a04123..200f261c7 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PairConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PairConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PathConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PathConverter.java index 8e01b7db7..c76419a0e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PathConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PathConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PeriodConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PeriodConverter.java index 9cc368e23..2e3dd483f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PeriodConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PeriodConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PrimitiveConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PrimitiveConverter.java index 1c8021ef7..d1b0d4c42 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PrimitiveConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/PrimitiveConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/RecordConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/RecordConverter.java index e3a7d6755..025835ed2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/RecordConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/RecordConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ReferenceConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ReferenceConverter.java index 7bd7511db..fceaa8e6c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ReferenceConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ReferenceConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StackTraceElementConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StackTraceElementConverter.java index e4cae9724..0adf7f85c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StackTraceElementConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StackTraceElementConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StringConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StringConverter.java index 9a3999926..0df2c5b87 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StringConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/StringConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TemporalAccessorConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TemporalAccessorConverter.java index 25923f276..ef82a0c3b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TemporalAccessorConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TemporalAccessorConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TimeZoneConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TimeZoneConverter.java index 7b8c5a001..d9332a274 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TimeZoneConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TimeZoneConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TripleConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TripleConverter.java index dfed01193..4e212384b 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TripleConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TripleConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TupleConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TupleConverter.java index 1a7342e64..7a557e8c8 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TupleConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/TupleConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URIConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URIConverter.java index 6f3a218eb..19391f96f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URIConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URIConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URLConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URLConverter.java index faa04c611..85a935d74 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URLConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/URLConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/UUIDConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/UUIDConverter.java index 90471af3b..895fb8ec1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/UUIDConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/UUIDConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/XMLGregorianCalendarConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/XMLGregorianCalendarConverter.java index 84a6ba192..8f2a7b31c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/XMLGregorianCalendarConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/XMLGregorianCalendarConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ZoneIdConverter.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ZoneIdConverter.java index 46865cddc..710ff346f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ZoneIdConverter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/ZoneIdConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/package-info.java index 649a9a9b7..ff8b43992 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/BlobStringer.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/BlobStringer.java index 217926aa7..dcc3fd517 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/BlobStringer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/BlobStringer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/ClobStringer.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/ClobStringer.java index 8940f077a..8d6e39a2c 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/ClobStringer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/ClobStringer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/package-info.java index c23c77299..372227d37 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/impl/stringer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/convert/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/convert/package-info.java index 3d766fe8b..abd236088 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/convert/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/convert/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN.java index 4d58c7f0d..e68ffabcc 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN10.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN10.java index 559eabce2..0d053408d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN10.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/CIN10.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/CoordinateUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/CoordinateUtil.java index 2a4e62984..2de563f83 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/CoordinateUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/CoordinateUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/CreditCodeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/CreditCodeUtil.java index c8b800bea..b32331696 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/CreditCodeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/CreditCodeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/IdcardUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/IdcardUtil.java index 92e11a492..9d275051b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/IdcardUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/IdcardUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/MaskingUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/MaskingUtil.java index 80ff26d7d..41a934751 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/MaskingUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/MaskingUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/PasswdStrength.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/PasswdStrength.java index 9496e84bf..4e278ad5e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/PasswdStrength.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/PasswdStrength.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/PhoneUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/PhoneUtil.java index 3121508f8..7f47c59e9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/PhoneUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/PhoneUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/VIN.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/VIN.java index 708036fa5..642053e87 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/VIN.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/VIN.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdConstants.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdConstants.java index 9311682cb..5bb76fcfa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdConstants.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdConstants.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdUtil.java index 963129451..b80037fa4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/IdUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/NanoId.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/NanoId.java index 04b2ea578..c8a78d726 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/NanoId.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/NanoId.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectId.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectId.java index 4ce9e0d36..a964e6baf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectId.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectId.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectIdGenerator.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectIdGenerator.java index c3b58f5a7..2c3fa1c4f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectIdGenerator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ObjectIdGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Pid.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Pid.java index f8c617242..29210f3da 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Pid.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Pid.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/SeataSnowflake.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/SeataSnowflake.java index a9abb83a1..2272430e5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/SeataSnowflake.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/SeataSnowflake.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Snowflake.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Snowflake.java index 212e766ce..e5f052704 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Snowflake.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/Snowflake.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULID.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULID.java index 9c4d7d2cf..db03b651a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULID.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULID.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULIDGenerator.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULIDGenerator.java index 18c109672..aa000888b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULIDGenerator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/ULIDGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUID.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUID.java index c5633c425..7dc6f6470 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUID.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUID.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUIDGenerator.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUIDGenerator.java index 7d6e85c85..7735378a9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUIDGenerator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/UUIDGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/package-info.java index e44e3b882..a8625c467 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/id/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/id/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/data/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/data/package-info.java index 880e0b985..aabb56f76 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/data/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/data/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/BetweenFormatter.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/BetweenFormatter.java index 3509c7270..78c745a1b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/BetweenFormatter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/BetweenFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/CalendarUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/CalendarUtil.java index 0583604d8..9637acc20 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/CalendarUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/CalendarUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBetween.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBetween.java index 4f969f9e8..debb6e4b3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBetween.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBetween.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBuilder.java index e5091ccf5..707827c69 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateException.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateException.java index fc173743e..59441027e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateField.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateField.java index 8d5cd5358..94cdc4255 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateField.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateField.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateModifier.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateModifier.java index ced76edf1..3994326bb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateModifier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateModifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DatePattern.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DatePattern.java index bd86d36d1..7f6e6c3bc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DatePattern.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DatePattern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateRange.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateRange.java index 3fb9d51df..f3cca0375 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateRange.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateRange.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateTime.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateTime.java index 2e0d1c2c6..c585c55b0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateTime.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateTime.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUnit.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUnit.java index 6a96e8c4e..8d65348b1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUnit.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUnit.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUtil.java index 505976726..53b94efd0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/DateUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/LocalTimeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/LocalTimeUtil.java index 582626a5d..a37c20a9d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/LocalTimeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/LocalTimeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/Month.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/Month.java index 56f3c7821..5df4cf153 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/Month.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/Month.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/Quarter.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/Quarter.java index 5cda916f2..dd570c1a5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/Quarter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/Quarter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/SqlDateUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/SqlDateUtil.java index 1f241ba2e..8ad3c56b4 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/SqlDateUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/SqlDateUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/StopWatch.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/StopWatch.java index 67974f170..025afe504 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/StopWatch.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/StopWatch.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/SystemClock.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/SystemClock.java index 15fe24837..958def314 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/SystemClock.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/SystemClock.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalAccessorUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalAccessorUtil.java index 8ef8f18cd..0cfc1bb61 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalAccessorUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalAccessorUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalUtil.java index 32f72416e..e82cb2f47 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/TemporalUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/TimeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/TimeUtil.java index f4ccdb8ef..bbd5c2c27 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/TimeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/TimeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/Week.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/Week.java index 2311cb483..3055dd1de 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/Week.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/Week.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/Zodiac.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/Zodiac.java index ba0faa3c8..53cb9a89f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/Zodiac.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/Zodiac.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/ZoneUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/ZoneUtil.java index fa4027ba9..90300e0ad 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/ZoneUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/ZoneUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDate.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDate.java index 35a041f13..5d39c82e3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDateFormat.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDateFormat.java index 28bde4b9d..1ca51abeb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDateFormat.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseDateFormat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseMonth.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseMonth.java index 684ca7d8a..621400aa6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseMonth.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ChineseMonth.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/GanZhi.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/GanZhi.java index 521959151..1064aa278 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/GanZhi.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/GanZhi.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarFestival.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarFestival.java index c39426da9..7661cd006 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarFestival.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarFestival.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarInfo.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarInfo.java index a067a6819..d5fe6a177 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarInfo.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/LunarInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ShiChen.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ShiChen.java index 15e8cc7ca..b8874ff32 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ShiChen.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/ShiChen.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/SolarTerms.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/SolarTerms.java index 9584cd9ec..791b438d9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/SolarTerms.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/SolarTerms.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/package-info.java index 1d7fb2984..64e95f7b0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/chinese/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DateBasic.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DateBasic.java index f106f1378..c4f133742 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DateBasic.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DateBasic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DatePrinter.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DatePrinter.java index dfc1625a4..6bcc2bd61 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DatePrinter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DatePrinter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DefaultDateBasic.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DefaultDateBasic.java index e989106f9..c5aa82695 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DefaultDateBasic.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/DefaultDateBasic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDateFormat.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDateFormat.java index 61d84afd3..ce0ffe233 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDateFormat.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDateFormat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDatePrinter.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDatePrinter.java index 04057554a..79376a5d0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDatePrinter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FastDatePrinter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FormatCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FormatCache.java index 25540b4c1..044107bac 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FormatCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/FormatCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/GlobalCustomFormat.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/GlobalCustomFormat.java index 1fd3a0475..47dff225c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/GlobalCustomFormat.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/GlobalCustomFormat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/SimpleDateBasic.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/SimpleDateBasic.java index ea9c737ae..9c8a7adc3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/SimpleDateBasic.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/SimpleDateBasic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/package-info.java index e4297498c..114bb264d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DateParser.java index fadef090e..0e9c3de0e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DefaultRegexDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DefaultRegexDateParser.java index 777ea3fd2..84fba8f2d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DefaultRegexDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/DefaultRegexDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/FastDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/FastDateParser.java index b22c6d1dc..a5c2d3dc0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/FastDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/FastDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PatternsDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PatternsDateParser.java index 5605aafa6..f43805154 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PatternsDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PatternsDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PositionDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PositionDateParser.java index 07b1cf2d5..cee573b05 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PositionDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PositionDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PredicateDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PredicateDateParser.java index e78f56e59..ee3536b9d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PredicateDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/PredicateDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegexDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegexDateParser.java index 74ea8db19..4d5091da7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegexDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegexDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegisterDateParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegisterDateParser.java index 3142b0c70..b27f32d40 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegisterDateParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/RegisterDateParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/TimeParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/TimeParser.java index 98a77c71b..5740994ea 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/TimeParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/TimeParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/package-info.java index 418d8144e..d20d737aa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/format/parser/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/date/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/date/package-info.java index c3442bb26..1b90b1f9f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/date/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/date/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/CloneException.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/CloneException.java index 108eb88c3..9191ee3e4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/CloneException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/CloneException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/DependencyException.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/DependencyException.java index 79b0f4779..fc1fb21c5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/DependencyException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/DependencyException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java index 8d1e0d8cc..438b493a1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/HutoolException.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/HutoolException.java index eb334aaa8..71421b500 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/HutoolException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/HutoolException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/StatefulException.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/StatefulException.java index 7e8c23991..968a48739 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/StatefulException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/StatefulException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/ValidateException.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/ValidateException.java index c63d6937d..d343b788c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/ValidateException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/ValidateException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/package-info.java index 042670d65..7adfd5fd7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/ComposeFunction.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/ComposeFunction.java index 9c01043f9..4941cfe45 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/ComposeFunction.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/ComposeFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/FunctionPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/FunctionPool.java index f7f11a0a5..b4f663eb8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/FunctionPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/FunctionPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaFactory.java index d0e80298b..4ae2853f9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaInfo.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaInfo.java index 8ecc6d56e..5723fbb83 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaInfo.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaUtil.java index ad8bf1f10..c80cb2b5b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/LambdaUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUnaryOperator.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUnaryOperator.java index 888dd68eb..82f9f9be2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUnaryOperator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUnaryOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUtil.java index 0b14e9b22..3cb71da80 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/PredicateUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiConsumer.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiConsumer.java index b02ca1ff1..bc5ec9bf7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiConsumer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiConsumer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiFunction.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiFunction.java index ab9d05aef..20d25d857 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiFunction.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiPredicate.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiPredicate.java index 37e2bd096..7fa7ced9c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiPredicate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBiPredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBinaryOperator.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBinaryOperator.java index f1d97e424..b34f4be05 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBinaryOperator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerBinaryOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer.java index b24cf9d87..5ba846a1f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer3.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer3.java index f5542fc2c..01098ccea 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer3.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerConsumer3.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerFunction.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerFunction.java index 9c83a327c..7fe456258 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerFunction.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerPredicate.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerPredicate.java index a4a2109d5..a80c2894f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerPredicate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerPredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerRunnable.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerRunnable.java index fd9299d97..6a134add1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerRunnable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerRunnable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerSupplier.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerSupplier.java index b8ed9c42f..ee8e18db3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerSupplier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerSupplier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerUnaryOperator.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerUnaryOperator.java index 40ec21352..547c21344 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/SerUnaryOperator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/SerUnaryOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/func/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/func/package-info.java index a7e1551cc..f8259eed4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/func/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/func/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/AppendableWriter.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/AppendableWriter.java index 29f858630..b6ad3b4aa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/AppendableWriter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/AppendableWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/BomReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/BomReader.java index 620e2e98d..6264f2cb3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/BomReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/BomReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/ByteOrderMark.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/ByteOrderMark.java index c4e7e6b68..c281b0bc6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/ByteOrderMark.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/ByteOrderMark.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/CharsetDetector.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/CharsetDetector.java index 269841782..0a64eff87 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/CharsetDetector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/CharsetDetector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/CircularByteBuffer.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/CircularByteBuffer.java index fb9d1a681..19f20ae0d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/CircularByteBuffer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/CircularByteBuffer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringReader.java index bb3d24db1..57b3df033 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringWriter.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringWriter.java index c858adce2..e5180aef0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringWriter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/FastStringWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/IORuntimeException.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/IORuntimeException.java index 974f9937d..e48365afd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/IORuntimeException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/IORuntimeException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/IoUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/IoUtil.java index a85c16dab..b8dfee7a9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/IoUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/IoUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/LineReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/LineReader.java index 62b0a5e56..99762d444 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/LineReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/LineReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/ManifestUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/ManifestUtil.java index 8b9cd2169..37f2dded1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/ManifestUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/ManifestUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/NioUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/NioUtil.java index dab77c760..c794fc425 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/NioUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/NioUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/ReaderWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/ReaderWrapper.java index af75f7dc4..fac196be8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/ReaderWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/ReaderWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/SerializeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/SerializeUtil.java index ad5387b01..f056832de 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/SerializeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/SerializeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/StreamProgress.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/StreamProgress.java index b3204a9ec..dcbf661d9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/StreamProgress.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/StreamProgress.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/BufferUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/BufferUtil.java index 0e2fa1908..5c5161b25 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/BufferUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/BufferUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/FastByteBuffer.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/FastByteBuffer.java index b63750f2f..099240cc1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/FastByteBuffer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/FastByteBuffer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/package-info.java index abc19609d..b51c7a5e1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/buffer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC16.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC16.java index c9ae9395e..981a27774 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC16.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC16.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC8.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC8.java index 875119fd7..da7443e6d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC8.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/CRC8.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/ChecksumUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/ChecksumUtil.java index ce14f6041..a8491fb72 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/ChecksumUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/ChecksumUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Ansi.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Ansi.java index 8d85b8d8b..a5764db9c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Ansi.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Ansi.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITT.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITT.java index 766abddf5..6e5fca5ef 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITT.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITT.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java index 1f2a9adf0..d548d65bf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Checksum.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Checksum.java index 8e71567fd..87517a6ba 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Checksum.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Checksum.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16DNP.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16DNP.java index ef00ddde6..037c4fdac 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16DNP.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16DNP.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16IBM.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16IBM.java index fc5befb77..7196fec85 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16IBM.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16IBM.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Maxim.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Maxim.java index fa0fef7fa..bffec65b1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Maxim.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Maxim.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Modbus.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Modbus.java index ef6eb2ac1..5bca43443 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Modbus.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16Modbus.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16USB.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16USB.java index d4ace217d..ea4533762 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16USB.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16USB.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16X25.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16X25.java index c5fcf4081..335d8d890 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16X25.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16X25.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16XModem.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16XModem.java index fb954cf0b..91deac59b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16XModem.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/CRC16XModem.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/package-info.java index 7256e73a7..7d569da82 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/crc16/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/package-info.java index dc360424a..43d1faed2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/checksum/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ChannelCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ChannelCopier.java index b90b53882..c1f0afa67 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ChannelCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ChannelCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/FileChannelCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/FileChannelCopier.java index 6b7088a44..b43894737 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/FileChannelCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/FileChannelCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/IoCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/IoCopier.java index 6034b5ca6..c04653f6a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/IoCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/IoCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ReaderWriterCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ReaderWriterCopier.java index 75e7238df..c9150804d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ReaderWriterCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/ReaderWriterCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/StreamCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/StreamCopier.java index 0d5a5e479..337fcd1b3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/StreamCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/StreamCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/package-info.java index 84c5fa804..12d891afb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/copy/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileAppender.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileAppender.java index c47b37e8f..a7c7d286e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileAppender.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileAppender.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMagicNumber.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMagicNumber.java index aab59b11d..2c84f4820 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMagicNumber.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMagicNumber.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMode.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMode.java index dd55afa5d..0a26380b3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileMode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileNameUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileNameUtil.java index fb68975eb..b0385077d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileNameUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileNameUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileReader.java index 77fe80b53..685c68eaf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileSystemUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileSystemUtil.java index 4e8839e63..e91d6dead 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileSystemUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileSystemUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileTypeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileTypeUtil.java index 101049262..0dc1609e1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileTypeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileTypeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileUtil.java index 6cba3879d..6e2ebe14f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWrapper.java index 00474d2b5..c8ef37b50 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWriter.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWriter.java index 05de78b53..fcd277635 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWriter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/FileWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineReadWatcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineReadWatcher.java index 31de8b45e..2006f18e7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineReadWatcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineReadWatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineSeparator.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineSeparator.java index 7166375d0..9f4b7d808 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineSeparator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/LineSeparator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathCopier.java index b38cbc7bd..f2e92f587 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathDeleter.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathDeleter.java index 1d448c9d0..fadf7bfda 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathDeleter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathDeleter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathMover.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathMover.java index 358250547..514116b2b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathMover.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathMover.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathUtil.java index 1cdaea47b..ffb97b45c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/PathUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/Tailer.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/Tailer.java index 73cdc8c94..36265c646 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/Tailer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/Tailer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/package-info.java index fd8befa84..69ee803c9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/CopyVisitor.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/CopyVisitor.java index a754876d5..abeddfdf6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/CopyVisitor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/CopyVisitor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/DelVisitor.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/DelVisitor.java index 865bc2b5b..bd514f63b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/DelVisitor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/DelVisitor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/MoveVisitor.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/MoveVisitor.java index 45fe6ff7f..7bc85ce21 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/MoveVisitor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/MoveVisitor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/package-info.java index 00d89f449..351567228 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/file/visitor/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/package-info.java index e11ce4f21..de7ae077d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/BytesResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/BytesResource.java index 3dfb6b158..5ce0dd57d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/BytesResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/BytesResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/CharSequenceResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/CharSequenceResource.java index 7aa5a9e1f..6c4d76146 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/CharSequenceResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/CharSequenceResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ClassPathResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ClassPathResource.java index 1016c7e9a..c0a53cc5a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ClassPathResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ClassPathResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileObjectResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileObjectResource.java index 29045dc4f..7b3a8dde0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileObjectResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileObjectResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileResource.java index 2f41b710d..ad3c97846 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/FileResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/HttpResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/HttpResource.java index e99eb2cfd..c4cbe05e1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/HttpResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/HttpResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/InputStreamResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/InputStreamResource.java index 4ca43de51..cbdaef867 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/InputStreamResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/InputStreamResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/JarResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/JarResource.java index 175cd6680..db5d7493b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/JarResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/JarResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiFileResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiFileResource.java index 074bfea5d..42df7b7c9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiFileResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiFileResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiResource.java index 60f09d181..95cb278ee 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/MultiResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/NoResourceException.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/NoResourceException.java index 888d9aa72..e222ad7a4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/NoResourceException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/NoResourceException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/Resource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/Resource.java index 11a5aaab6..09af17178 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/Resource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/Resource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceFinder.java index eb1ef8caa..614e7a7f6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceUtil.java index 2e47877b8..56ef8a98e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/ResourceUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/StringResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/StringResource.java index 57c0dc736..f1413cfdb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/StringResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/StringResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/UrlResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/UrlResource.java index 86b1d5904..7fb40173c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/UrlResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/UrlResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/VfsResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/VfsResource.java index c5c995bfb..38c70eeec 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/VfsResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/VfsResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/WebAppResource.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/WebAppResource.java index e536ed64a..e32058cd8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/WebAppResource.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/WebAppResource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/package-info.java index 51de3943b..cf27bf766 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/resource/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/BOMInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/BOMInputStream.java index 8a5db03f6..426d02196 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/BOMInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/BOMInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyInputStream.java index 201a47835..46f2a8cd2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyOutputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyOutputStream.java index c6e4f5e74..9e29026c0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyOutputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/EmptyOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/FastByteArrayOutputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/FastByteArrayOutputStream.java index 1810507af..741923f0d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/FastByteArrayOutputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/FastByteArrayOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LimitedInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LimitedInputStream.java index b1d398ddf..d69f3f1ab 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LimitedInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LimitedInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LineCounter.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LineCounter.java index 850c35a5c..bb99cb2e9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LineCounter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/LineCounter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ReaderInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ReaderInputStream.java index 0881b35a7..e153ed876 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ReaderInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ReaderInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StrInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StrInputStream.java index c0294e613..c0ce7117a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StrInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StrInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamReader.java index ab8cee0ad..33be1dd57 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamWriter.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamWriter.java index 7709f9aa6..81dd8577a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamWriter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/StreamWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/SyncInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/SyncInputStream.java index 18a0f7843..67d856978 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/SyncInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/SyncInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ValidateObjectInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ValidateObjectInputStream.java index 1791576cc..d60dd81a8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ValidateObjectInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/ValidateObjectInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/WriterOutputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/WriterOutputStream.java index 1db5e690c..b223c64c1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/WriterOutputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/WriterOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/package-info.java index caea75287..1e02ae1f6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/stream/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSize.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSize.java index f2b841cb1..60b880fb5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSize.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSize.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSizeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSizeUtil.java index bbf782f9b..1399dba44 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSizeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataSizeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataUnit.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataUnit.java index b422844d9..a4eb306bd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataUnit.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/DataUnit.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/package-info.java index b45e69e9f..42d588e1c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/unit/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchException.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchException.java index a61761e83..fc536c300 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchKind.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchKind.java index fc0ae51d1..4666e2798 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchKind.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchKind.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchMonitor.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchMonitor.java index 0a2ad95a3..0550e26ad 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchMonitor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchServiceWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchServiceWrapper.java index 49f4b31b1..0db274c0a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchServiceWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchServiceWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchUtil.java index 8715bd962..404090c2b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/WatchUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/Watcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/Watcher.java index f99af16b9..736d54ff2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/Watcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/Watcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/package-info.java index 2c2c18136..02d3e4323 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/DelayWatcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/DelayWatcher.java index a03f87396..fe3c9e3b6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/DelayWatcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/DelayWatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/SimpleWatcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/SimpleWatcher.java index 9a3f91935..fa2e77702 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/SimpleWatcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/SimpleWatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/WatcherChain.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/WatcherChain.java index fe437ba77..7ef89333c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/WatcherChain.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/WatcherChain.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/package-info.java index 464a2f19f..ffc2df306 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/io/watch/watchers/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Assert.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Assert.java index 2499b1bd1..694188cb9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Assert.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Assert.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Chain.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Chain.java index 14de95cd9..21ff50011 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Chain.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Chain.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Console.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Console.java index 682f76044..e0aba8efc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Console.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Console.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ConsoleTable.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ConsoleTable.java index ecce14079..27f4dd351 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ConsoleTable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ConsoleTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/EnumItem.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/EnumItem.java index 97ca267c9..941a39f9c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/EnumItem.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/EnumItem.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Opt.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Opt.java index da072f025..79e6dab7b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Opt.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Opt.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Singleton.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Singleton.java index 45b3125fb..1ed2f6832 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Singleton.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Singleton.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Validator.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Validator.java index 6535594f4..67b4aa5ad 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Validator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Validator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Version.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Version.java index 9e4e7d213..4fe04c317 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/Version.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/Version.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitBackgroundColor.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitBackgroundColor.java index d5d4da388..e35120ae5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitBackgroundColor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitBackgroundColor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitColor.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitColor.java index 87b801bf5..3fe39b0e5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitColor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi4BitColor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi8BitColor.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi8BitColor.java index 99aced96a..9edc66a09 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi8BitColor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/Ansi8BitColor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiElement.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiElement.java index abf1cfc66..b7ee2c5b5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiElement.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiElement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiEncoder.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiEncoder.java index 7dfa23292..8c318edc3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiEncoder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiEncoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiStyle.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiStyle.java index 2df44b2c2..09aebdc21 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiStyle.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/AnsiStyle.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/package-info.java index a7e2ac4f1..14653d677 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ansi/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/Builder.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/Builder.java index 00f1d1691..95c998220 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/Builder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/Builder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/GenericBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/GenericBuilder.java index 7b2c73ffd..9f8484330 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/GenericBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/GenericBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/package-info.java index fc36ca0b7..778567411 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/builder/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/Caller.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/Caller.java index dcaeb3f9a..880fee7c4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/Caller.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/Caller.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/CallerUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/CallerUtil.java index 149cbe9d1..11ff33422 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/CallerUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/CallerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/SecurityManagerCaller.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/SecurityManagerCaller.java index 0031bfa97..af4502659 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/SecurityManagerCaller.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/SecurityManagerCaller.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/StackTraceCaller.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/StackTraceCaller.java index 270322f26..acf0e314b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/StackTraceCaller.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/StackTraceCaller.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/package-info.java index 657193953..1c5bcbd61 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/caller/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/Copier.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/Copier.java index 2089e66ef..45f38a2f0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/Copier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/Copier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/SrcToTargetCopier.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/SrcToTargetCopier.java index dcfa5eaba..7d0d871f4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/SrcToTargetCopier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/SrcToTargetCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/package-info.java index b6e7c0094..b6bec1d74 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/copier/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/Generator.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/Generator.java index 63ef5f1fc..173aa31be 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/Generator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/Generator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/ObjectGenerator.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/ObjectGenerator.java index 2f796e9e1..1a8988410 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/ObjectGenerator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/ObjectGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/package-info.java index e0e8730c6..dea308887 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/generator/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/GroupedTypeGetter.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/GroupedTypeGetter.java index 528d17b60..7e8f85a8b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/GroupedTypeGetter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/GroupedTypeGetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/TypeGetter.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/TypeGetter.java index e828bde8c..6c3161829 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/TypeGetter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/TypeGetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/package-info.java index 7e0e7d65d..07557d757 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/getter/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/Intern.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/Intern.java index 421c311f6..419b7c27d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/Intern.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/Intern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/InternUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/InternUtil.java index bec035d60..b95845f6a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/InternUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/InternUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/StringIntern.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/StringIntern.java index c627b4ac7..8565d2902 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/StringIntern.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/StringIntern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/WeakIntern.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/WeakIntern.java index aae352431..c500f91a1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/WeakIntern.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/WeakIntern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/package-info.java index ec7bfabf0..244f8f932 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/intern/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/AtomicLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/AtomicLoader.java index 050a8128c..2e666ff86 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/AtomicLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/AtomicLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyFunLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyFunLoader.java index 653491aff..0bf595c84 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyFunLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyFunLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyLoader.java index dea221fa8..58c900c9b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/LazyLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/Loader.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/Loader.java index 6e9a7f8dd..154c32ab1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/Loader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/Loader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/package-info.java index 162a8c772..5e975940b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/loader/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/Mutable.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/Mutable.java index dd450c91d..9d6890cf6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/Mutable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/Mutable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableBool.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableBool.java index 2be125db5..e0611e0c8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableBool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableBool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableByte.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableByte.java index f119d5bef..8c2282ace 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableByte.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableByte.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableDouble.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableDouble.java index d906cc281..900d52bcb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableDouble.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableDouble.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableEntry.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableEntry.java index bee689230..6ab96c563 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableEntry.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableEntry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableFloat.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableFloat.java index fb7d7fa8e..7afdc6fe0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableFloat.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableFloat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableInt.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableInt.java index a7c929cf3..8930a27e9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableInt.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableInt.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableLong.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableLong.java index 4621737ad..1f8ccf0cd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableLong.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableLong.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableObj.java index 010fee43d..d11b83bc8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutablePair.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutablePair.java index 714848593..14f847660 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutablePair.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutablePair.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableShort.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableShort.java index dca121aab..8144eed20 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableShort.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableShort.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableTriple.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableTriple.java index a888f8588..e0f8cf260 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableTriple.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/MutableTriple.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/package-info.java index 83763c51f..73ddac494 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/mutable/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/package-info.java index 7dda3bdf3..645ca1c9f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/NavigatePageInfo.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/NavigatePageInfo.java index edf9efa8b..dc31f1cb2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/NavigatePageInfo.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/NavigatePageInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/PageInfo.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/PageInfo.java index 68bc51c06..c99710975 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/PageInfo.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/PageInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/package-info.java index 34b067666..3cc7f5401 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/page/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Bound.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Bound.java index 844577141..d52f7b442 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Bound.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Bound.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundType.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundType.java index 3b568838a..976207033 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundType.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRange.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRange.java index 8ea20d94d..32fcb1b54 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRange.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRange.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRangeOperation.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRangeOperation.java index a0168be7f..3f970347a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRangeOperation.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/BoundedRangeOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/DefaultSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/DefaultSegment.java index 775feb450..7d7e751a8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/DefaultSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/DefaultSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/FiniteBound.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/FiniteBound.java index 180d4a6f5..5d5b796f4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/FiniteBound.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/FiniteBound.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneLowerBound.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneLowerBound.java index 858cb55c6..596103c48 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneLowerBound.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneLowerBound.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneUpperBound.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneUpperBound.java index 17b4130e6..3382cbed9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneUpperBound.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/NoneUpperBound.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Range.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Range.java index bb328c23f..cfa64c089 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Range.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Range.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Segment.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Segment.java index ba9e5f009..30a83c516 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Segment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/Segment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/package-info.java index ba85580d8..4a545e1ef 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/range/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/PhantomObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/PhantomObj.java index 162bde978..1e13716bf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/PhantomObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/PhantomObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/Ref.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/Ref.java index 9995d7c6c..c5da65f82 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/Ref.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/Ref.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceType.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceType.java index fa3762a5c..1f3e29037 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceType.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceUtil.java index 0820e6659..d1ee17e49 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/ReferenceUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/SoftObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/SoftObj.java index 094a71404..f589b3467 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/SoftObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/SoftObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/StrongObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/StrongObj.java index a7fe24c44..cba46b1e4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/StrongObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/StrongObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/WeakObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/WeakObj.java index 49a090eb8..3a6e40cd1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/WeakObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/WeakObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/package-info.java index c8f502f2d..f98618eab 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/ref/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/IncrementSelector.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/IncrementSelector.java index 5a86b0d7c..96aa33d80 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/IncrementSelector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/IncrementSelector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/RandomSelector.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/RandomSelector.java index 3744c8909..84ad9afda 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/RandomSelector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/RandomSelector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/Selector.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/Selector.java index e07bca645..0e5b523c5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/Selector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/Selector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightObj.java index 43c124733..aa35bdc0b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightSelector.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightSelector.java index 344bd9b7b..5f5bc696b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightSelector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/SmoothWeightSelector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightObj.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightObj.java index 3893c7c58..d2ad128d4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightObj.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightObj.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightRandomSelector.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightRandomSelector.java index 4f6dbe463..c0816ab84 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightRandomSelector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/WeightRandomSelector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/package-info.java index d50629400..a8c6c1976 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/selector/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Pair.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Pair.java index 518cd0684..3d2d95350 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Pair.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Pair.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Triple.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Triple.java index 920414f5c..888136011 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Triple.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Triple.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Tuple.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Tuple.java index 3c6a27ccb..d58b2b1d7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Tuple.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/Tuple.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/package-info.java index 4fbec9cfe..e22cc10d3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/tuple/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/SimpleWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/SimpleWrapper.java index 0f15690d3..f02e29bf5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/SimpleWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/SimpleWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/Wrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/Wrapper.java index 05fd525d0..5d2dccd60 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/Wrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/Wrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/package-info.java index 631938123..5e26038aa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/lang/wrapper/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/AbsEntry.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/AbsEntry.java index ac9a90e96..baafdd3f9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/AbsEntry.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/AbsEntry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/BiMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/BiMap.java index 18c672f04..c09f6c45a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/BiMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/BiMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseLinkedMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseLinkedMap.java index 777444da5..a21cefa52 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseLinkedMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseLinkedMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseMap.java index dfe30b531..cd1bf6c2a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/CamelCaseMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveLinkedMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveLinkedMap.java index c1fd97300..9d4bb5d9b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveLinkedMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveLinkedMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveMap.java index a9902d052..0de425e72 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveTreeMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveTreeMap.java index eedc9b0ed..e829b337b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveTreeMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/CaseInsensitiveTreeMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/CustomKeyMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/CustomKeyMap.java index 2b784f4c9..c8e3d10ca 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/CustomKeyMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/CustomKeyMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/Dict.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/Dict.java index 14be76d38..7bef9668f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/Dict.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/Dict.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/FixedLinkedHashMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/FixedLinkedHashMap.java index 6fc48981c..efe49b9e0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/FixedLinkedHashMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/FixedLinkedHashMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/ForestMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/ForestMap.java index 5406419a1..16d6bc76d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/ForestMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/ForestMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncKeyMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncKeyMap.java index 68be21556..03af1158b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncKeyMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncKeyMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncMap.java index f9f0c7407..133b854ae 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/FuncMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/LinkedForestMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/LinkedForestMap.java index 33bdaf153..58aa3e52a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/LinkedForestMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/LinkedForestMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapBuilder.java index 14056e758..b2b58ab04 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapGetUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapGetUtil.java index fe62ad941..e9511fe7c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapGetUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapGetUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapJoiner.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapJoiner.java index f65f0af50..5aaf8c6b6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapJoiner.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapJoiner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapProxy.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapProxy.java index 4a9d556ef..848bf6a66 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapProxy.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapProxy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapUtil.java index 32bd4eea0..24792954d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapWrapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapWrapper.java index af7f60b09..dc667e24c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/MapWrapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/MapWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/TableMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/TableMap.java index 7b31ec765..49be42e3c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/TableMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/TableMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/TolerantMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/TolerantMap.java index 27bda08ad..cc4a2ca10 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/TolerantMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/TolerantMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/TransMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/TransMap.java index a4cccdbc2..7540e2bc2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/TransMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/TransMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/TreeEntry.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/TreeEntry.java index e6c5acd6a..58b03b264 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/TreeEntry.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/TreeEntry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/TripleTable.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/TripleTable.java index 3de6796d3..bd96d8e0a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/TripleTable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/TripleTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/ConcurrentLinkedHashMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/ConcurrentLinkedHashMap.java index 36d852a34..c871fc9a0 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/ConcurrentLinkedHashMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/ConcurrentLinkedHashMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/EntryWeigher.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/EntryWeigher.java index aa1137b9f..95f77049c 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/EntryWeigher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/EntryWeigher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/SafeConcurrentHashMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/SafeConcurrentHashMap.java index 9ece4df63..f540985a4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/SafeConcurrentHashMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/SafeConcurrentHashMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weigher.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weigher.java index b217cd051..2f78959e0 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weigher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weigher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weighers.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weighers.java index 29287f5b7..31fa9a6a9 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weighers.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/Weighers.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/package-info.java index bd0377ada..704433622 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/concurrent/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsCollValueMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsCollValueMap.java index 8215ecb9c..3696f561b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsCollValueMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsCollValueMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsTable.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsTable.java index 179a7e0eb..958aa746f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsTable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/AbsTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/CollectionValueMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/CollectionValueMap.java index 5138ab112..0af07277f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/CollectionValueMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/CollectionValueMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java index 9bc942394..fb7443601 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/DirectedWeightGraph.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2024 Hutool Team and hutool.cn + * + * Licensed 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. + */ + package org.dromara.hutool.core.map.multi; import org.dromara.hutool.core.exception.HutoolException; diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Graph.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Graph.java index 971de44f2..62891868c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Graph.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Graph.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/ListValueMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/ListValueMap.java index 9e642ceda..47be04b5c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/ListValueMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/ListValueMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/MultiValueMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/MultiValueMap.java index 197802f0e..b892ec362 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/MultiValueMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/MultiValueMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/RowKeyTable.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/RowKeyTable.java index 747ce26ac..593ed6d82 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/RowKeyTable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/RowKeyTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/SetValueMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/SetValueMap.java index af9e24ee2..6e568ba3e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/SetValueMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/SetValueMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Table.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Table.java index cb496d6f9..45563a58f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Table.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/Table.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/package-info.java index 442926b2b..1561dc545 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/multi/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/package-info.java index 08aa6b312..369d9cd29 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/ReferenceConcurrentMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/ReferenceConcurrentMap.java index 62a1ba8b9..f9e55d537 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/ReferenceConcurrentMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/ReferenceConcurrentMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/SoftConcurrentMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/SoftConcurrentMap.java index 3c26d6d1c..412aba445 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/SoftConcurrentMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/SoftConcurrentMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakConcurrentMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakConcurrentMap.java index 3157a2ae7..ce3fe62b7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakConcurrentMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakConcurrentMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakKeyConcurrentMap.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakKeyConcurrentMap.java index 00ac4941b..e490842a7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakKeyConcurrentMap.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/WeakKeyConcurrentMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/package-info.java index 722275418..4a697e8ed 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/map/reference/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/Arrangement.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/Arrangement.java index 90d833b26..00a88faa0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/Arrangement.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/Arrangement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/BitStatusUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/BitStatusUtil.java index 5e9b40e9b..7fcc179ed 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/BitStatusUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/BitStatusUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/Calculator.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/Calculator.java index d1d10deba..d1d8ef476 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/Calculator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/Calculator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberFormatter.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberFormatter.java index d57e9a636..4d7475c11 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberFormatter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberParser.java index 801944825..df14978ef 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/ChineseNumberParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/Combination.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/Combination.java index e874511a8..e86ff2872 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/Combination.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/Combination.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/EnglishNumberFormatter.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/EnglishNumberFormatter.java index 8332c9c25..bf427e202 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/EnglishNumberFormatter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/EnglishNumberFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/MathUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/MathUtil.java index b83ce6ea5..7038d8ae7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/MathUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/MathUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/Money.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/Money.java index b3606b311..5a614f880 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/Money.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/Money.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberParser.java index 9edc6ac3a..1540c2fc2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberUtil.java index 971fbc2f2..3e126f986 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberValidator.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberValidator.java index fa62460bd..6990b4d40 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberValidator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/NumberValidator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/RomanNumberFormatter.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/RomanNumberFormatter.java index ed6219790..45bbe6bae 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/RomanNumberFormatter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/RomanNumberFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/math/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/math/package-info.java index 4dff5c074..1f26d50a0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/math/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/math/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Pool.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Pool.java index 7bff9a192..04ebc7b5f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Pool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Pool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Util.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Util.java index 2f86039d7..9d8d95025 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Util.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv4Util.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv6Util.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv6Util.java index e7ce04a66..4dc3ff144 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv6Util.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/Ipv6Util.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/LocalPortGenerator.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/LocalPortGenerator.java index b1e5e40be..8b36936f1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/LocalPortGenerator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/LocalPortGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/MacAddressUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/MacAddressUtil.java index ceec0cf3a..d7d60bb76 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/MacAddressUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/MacAddressUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/MaskBit.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/MaskBit.java index 446ab916d..ce6a5514a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/MaskBit.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/MaskBit.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/NetUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/NetUtil.java index 24949f9f3..6412bd267 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/NetUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/NetUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ProxySocketFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ProxySocketFactory.java index 7f7574eda..aff6d829d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ProxySocketFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ProxySocketFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/UserPassAuthenticator.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/UserPassAuthenticator.java index a24ec80cd..3a6c16b01 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/UserPassAuthenticator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/UserPassAuthenticator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartFormData.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartFormData.java index 7c9a057e0..8f50533a7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartFormData.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartFormData.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartRequestInputStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartRequestInputStream.java index 7065971ea..f45edeb51 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartRequestInputStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/MultipartRequestInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFile.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFile.java index 2a1de812d..cca36452f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFile.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFile.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFileHeader.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFileHeader.java index 6a7a54472..e77acfe74 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFileHeader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadFileHeader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadSetting.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadSetting.java index 1f1017cdc..218e4b92a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadSetting.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/UploadSetting.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/package-info.java index df65ea4cc..bcf072067 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/multipart/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/package-info.java index 702b25a09..89e3a58a0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/KeyManagerUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/KeyManagerUtil.java index 258426219..16e77d23f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/KeyManagerUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/KeyManagerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextBuilder.java index 0486408e1..739860dc3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextUtil.java index 0a3989b92..391377def 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLContextUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLProtocols.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLProtocols.java index b5c053a8f..3a037115e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLProtocols.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/SSLProtocols.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyHostnameVerifier.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyHostnameVerifier.java index 28f8b933a..48e7a2d3a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyHostnameVerifier.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyHostnameVerifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyTrustManager.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyTrustManager.java index 190b10ca8..d1d450085 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyTrustManager.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustAnyTrustManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustManagerUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustManagerUtil.java index 3b50385f2..defecf923 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustManagerUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/TrustManagerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/package-info.java index 209816683..d303391c7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/ssl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/FormUrlencoded.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/FormUrlencoded.java index b127dd1e7..c20bbf516 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/FormUrlencoded.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/FormUrlencoded.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/RFC3986.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/RFC3986.java index 76721f0cd..face68be6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/RFC3986.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/RFC3986.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlBuilder.java index 1f8bcae98..09f5f02d3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlDecoder.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlDecoder.java index 97158ec6d..5531bd719 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlDecoder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlEncoder.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlEncoder.java index a7f020f4c..0a28b1ae9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlEncoder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlEncoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlPath.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlPath.java index 23bae081a..5e2bd3703 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlPath.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlPath.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlProtocolUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlProtocolUtil.java index dde5b710b..812358c8e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlProtocolUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlProtocolUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQuery.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQuery.java index 797669c94..e2f017120 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQuery.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQuery.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQueryUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQueryUtil.java index b2d08d7cd..2ffa6b90e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQueryUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlQueryUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlUtil.java index 6c7c73268..61fd79314 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/UrlUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/package-info.java index d80282dcc..4a79ac09c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/net/url/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/net/url/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/package-info.java index 4585c0b62..cf55b55b9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectFactory.java index f7db5f810..c98e5676e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectPool.java index 95658450a..ea5836632 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/ObjectPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolConfig.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolConfig.java index 2285dc9c9..f0bed00b9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolConfig.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolException.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolException.java index 00e759ea9..95395e8a5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/PoolException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/Poolable.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/Poolable.java index 1aa32737d..75abdeb0a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/Poolable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/Poolable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/SimplePoolable.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/SimplePoolable.java index 8588b40d5..4caa95bef 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/SimplePoolable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/SimplePoolable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/package-info.java index b913b156a..e90e0c5bb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionObjectPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionObjectPool.java index 3dd21a290..91f0f4f98 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionObjectPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionObjectPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolConfig.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolConfig.java index bfafb9ed3..67dd65781 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolConfig.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolable.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolable.java index c15df96b3..02fd719ff 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PartitionPoolable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PoolPartition.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PoolPartition.java index 55bd82e9b..f64738a44 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PoolPartition.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/PoolPartition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/package-info.java index 9dd5ac636..7c3814699 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/pool/partition/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ActualTypeMapperPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ActualTypeMapperPool.java index a2eba29d9..9e82047bf 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ActualTypeMapperPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ActualTypeMapperPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassDescUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassDescUtil.java index 557edd626..f8a71fdd7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassDescUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassDescUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassScanner.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassScanner.java index e9b0ff174..796643d1c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassScanner.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassScanner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassUtil.java index 33e6ec58c..0169298d6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ClassUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ConstructorUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ConstructorUtil.java index f416e3206..0a365d4ed 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ConstructorUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ConstructorUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldReflect.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldReflect.java index b38d2e111..e723692d6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldReflect.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldReflect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldUtil.java index a8982760b..af0c87d19 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/FieldUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/Invoker.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/Invoker.java index 866cebf80..6555dfa3c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/Invoker.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/Invoker.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/JdkProxyUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/JdkProxyUtil.java index 263ee4e6f..ab66953ea 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/JdkProxyUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/JdkProxyUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierType.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierType.java index 83435da37..41d76540f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierType.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierUtil.java index 6694f90e6..21a921a0d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ModifierUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/NullType.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/NullType.java index 9a79ffd05..17e487aee 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/NullType.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/NullType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ParameterizedTypeImpl.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ParameterizedTypeImpl.java index d490193e4..65535961a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ParameterizedTypeImpl.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ParameterizedTypeImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ReflectUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ReflectUtil.java index 1eeb8ba3f..b1394e4dc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ReflectUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/ReflectUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeReference.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeReference.java index 476eff47f..cecc047fd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeReference.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeReference.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeUtil.java index 3d68d5483..dbbf5507a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/TypeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/DefaultObjectCreator.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/DefaultObjectCreator.java index e0e292ae7..dc8280251 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/DefaultObjectCreator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/DefaultObjectCreator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/ObjectCreator.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/ObjectCreator.java index b31c7462a..b10d98fb7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/ObjectCreator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/ObjectCreator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/PossibleObjectCreator.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/PossibleObjectCreator.java index cdf312252..160220159 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/PossibleObjectCreator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/PossibleObjectCreator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/package-info.java index 1cb8e9028..c861d045c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/creator/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KCallable.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KCallable.java index c5e3a7b6d..82295e46f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KCallable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KCallable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassImpl.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassImpl.java index 3c8daeafb..3ce9276d1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassImpl.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassUtil.java index 070ea34ae..a81dca3b4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KClassUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KParameter.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KParameter.java index aaa767416..1180b8b4c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KParameter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/KParameter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/package-info.java index 420f114b1..06a9390d5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/kotlin/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/ConstructorLookupFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/ConstructorLookupFactory.java index 896e5c8c8..333388873 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/ConstructorLookupFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/ConstructorLookupFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupFactory.java index 10ed9adc8..5aec91354 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupUtil.java index 4e3eff46d..82c37ca78 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/LookupUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/MethodLookupFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/MethodLookupFactory.java index 7e8972a1f..da2e4dacd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/MethodLookupFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/MethodLookupFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/package-info.java index b844cc2e6..aea0faa25 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/lookup/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodHandleUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodHandleUtil.java index 784196f92..f133b51d5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodHandleUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodHandleUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodInvoker.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodInvoker.java index f4e4e86e1..8df36673d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodInvoker.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodInvoker.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodMatcherUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodMatcherUtil.java index 9e50241dc..9eab7e89f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodMatcherUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodMatcherUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodNameUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodNameUtil.java index e2c4ca684..1f5c73f98 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodNameUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodNameUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodReflect.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodReflect.java index ba34d4167..807d3edde 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodReflect.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodReflect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodTypeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodTypeUtil.java index 86d47074d..ab2d12df0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodTypeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodTypeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodUtil.java index 57e4eafc0..ce84306d9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/MethodUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/package-info.java index 4b5141f99..3700913bb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/method/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/package-info.java index b812fee21..07f72ed8c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/reflect/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/reflect/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/regex/PatternPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/regex/PatternPool.java index 4acc6884e..060c6e615 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/regex/PatternPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/regex/PatternPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/regex/ReUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/regex/ReUtil.java index 6794b3e2c..131c29938 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/regex/ReUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/regex/ReUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/regex/RegexPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/regex/RegexPool.java index 2d8546cf6..73acd0407 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/regex/RegexPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/regex/RegexPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/regex/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/regex/package-info.java index 2c8886f2f..1eaf4f28b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/regex/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/regex/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/AbsServiceLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/AbsServiceLoader.java index 49d5c11d7..4d099b443 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/AbsServiceLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/AbsServiceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/JdkServiceLoaderUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/JdkServiceLoaderUtil.java index 2b0b0b092..d3f5ee936 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/JdkServiceLoaderUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/JdkServiceLoaderUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/ListServiceLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/ListServiceLoader.java index bf18ae483..9d7622ab2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/ListServiceLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/ListServiceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/MapServiceLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/MapServiceLoader.java index 23614bc02..56ccd2372 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/MapServiceLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/MapServiceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/ServiceLoader.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/ServiceLoader.java index 1c43c2427..9ab7b4329 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/ServiceLoader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/ServiceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiException.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiException.java index b2710e4d8..a0ab002a8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiUtil.java index e90a9e9e7..2321baefa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/SpiUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/spi/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/spi/package-info.java index 1285b9bab..53e170bea 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/spi/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/spi/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/AbstractEnhancedWrappedStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/AbstractEnhancedWrappedStream.java index 4dd233c4b..5bb90c95f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/AbstractEnhancedWrappedStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/AbstractEnhancedWrappedStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/CollectorUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/CollectorUtil.java index 5c10e6e75..68958240f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/CollectorUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/CollectorUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/EasyStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/EasyStream.java index 396673c61..b5796ed56 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/EasyStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/EasyStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/EntryStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/EntryStream.java index e244eac54..24352ff15 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/EntryStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/EntryStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/SimpleCollector.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/SimpleCollector.java index d827b3ee3..d59c2fc9d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/SimpleCollector.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/SimpleCollector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/StreamUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/StreamUtil.java index 042d8901d..7ef905962 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/StreamUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/StreamUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/TerminableWrappedStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/TerminableWrappedStream.java index f8276c18a..8924a5b70 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/TerminableWrappedStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/TerminableWrappedStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/TransformableWrappedStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/TransformableWrappedStream.java index 6b22718ca..856f3e2a1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/TransformableWrappedStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/TransformableWrappedStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/WrappedStream.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/WrappedStream.java index 34c7f9062..e40c27111 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/WrappedStream.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/WrappedStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/package-info.java index f4b4e3c88..449c405bb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/DropWhileSpliterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/DropWhileSpliterator.java index e211129d8..af633910e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/DropWhileSpliterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/DropWhileSpliterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/IterateSpliterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/IterateSpliterator.java index 25df8984d..9b7740dc7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/IterateSpliterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/IterateSpliterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/TakeWhileSpliterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/TakeWhileSpliterator.java index 619df4950..838f85b79 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/TakeWhileSpliterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/TakeWhileSpliterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/package-info.java index 709a48628..5aae9c588 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/stream/spliterators/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/ASCIIStrCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/ASCIIStrCache.java index b25cd8431..92df91e8d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/ASCIIStrCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/ASCIIStrCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/AntPathMatcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/AntPathMatcher.java index 342474822..1dd389f0f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/AntPathMatcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/AntPathMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharArray.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharArray.java index d7e0cf818..19b82d703 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharArray.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharArray.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharPool.java index 777e85f2f..5097dba77 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharSequenceUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharSequenceUtil.java index c9b98d95e..71e0d7339 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharSequenceUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharSequenceUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharUtil.java index 0ac8085cc..9d081a5a4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/CharUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/CharUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/CodePointIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/CodePointIter.java index 42d80f0f3..22bef7cb0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/CodePointIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/CodePointIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/NamingCase.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/NamingCase.java index 375d534bf..741b907f1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/NamingCase.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/NamingCase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrJoiner.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrJoiner.java index 87c57b7ac..320e070eb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrJoiner.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrJoiner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrPool.java index 82906e003..0850347d8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRegionMatcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRegionMatcher.java index b587cd3c5..e0a54dc0e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRegionMatcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRegionMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRepeater.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRepeater.java index 0906afcaf..ee40b9b4d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRepeater.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrRepeater.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrTrimer.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrTrimer.java index f94f11e25..aa2605183 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrTrimer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrTrimer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrUtil.java index 6b245325e..003cad0f7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrValidator.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrValidator.java index 3c4969868..ae87ce5eb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/StrValidator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/StrValidator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/TextSimilarity.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/TextSimilarity.java index 78be3ba6e..b4e59dee5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/TextSimilarity.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/TextSimilarity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/UnicodeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/UnicodeUtil.java index 97c56b0a4..8db081e56 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/UnicodeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/UnicodeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/AbstractFilter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/AbstractFilter.java index 56c15a327..47fb7246a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/AbstractFilter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/AbstractFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/BloomFilter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/BloomFilter.java index daa2b14ce..6251a8854 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/BloomFilter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/BloomFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/CombinedBloomFilter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/CombinedBloomFilter.java index 3200346a2..c130042f1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/CombinedBloomFilter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/CombinedBloomFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/FuncFilter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/FuncFilter.java index ed6fba113..9003cf123 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/FuncFilter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/FuncFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/package-info.java index a8e6eb342..ef07c1aca 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/bloom/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/FoundWord.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/FoundWord.java index 0e0ad4933..91769165e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/FoundWord.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/FoundWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/NFA.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/NFA.java index 53053a305..e3ca6d8b8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/NFA.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/NFA.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveProcessor.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveProcessor.java index 4c6d75cb0..f20698d9a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveProcessor.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveProcessor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveUtil.java index c258f3a52..dbba29903 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/SensitiveUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/StopChar.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/StopChar.java index 4cc82581b..58986b5a8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/StopChar.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/StopChar.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/WordTree.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/WordTree.java index 5eb13bc44..700e73cb1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/WordTree.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/WordTree.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/package-info.java index fcb835d64..f76cda7f8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/dfa/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/EscapeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/EscapeUtil.java index 39d3added..d2053f69f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/EscapeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/EscapeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Escape.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Escape.java index fde4b11d5..485b7c465 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Escape.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Escape.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Unescape.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Unescape.java index 33cb14d11..f15212455 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Unescape.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/Html4Unescape.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/InternalEscapeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/InternalEscapeUtil.java index 1cb091198..3ce1a0ae8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/InternalEscapeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/InternalEscapeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/NumericEntityUnescaper.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/NumericEntityUnescaper.java index 48a1bf737..7855d5937 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/NumericEntityUnescaper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/NumericEntityUnescaper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlEscape.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlEscape.java index 054eb77b5..277d991fe 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlEscape.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlEscape.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlUnescape.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlUnescape.java index 036db3f59..2c547f62e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlUnescape.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/XmlUnescape.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/package-info.java index 932288d86..965fc8de6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/escape/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharFinder.java index 161b4e0cd..fa9f88e7a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharMatcherFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharMatcherFinder.java index 5ef885244..9390751cb 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharMatcherFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/CharMatcherFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/Finder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/Finder.java index b56853d57..fa727bcc5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/Finder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/Finder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/LengthFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/LengthFinder.java index 5b6497bfe..3711affe6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/LengthFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/LengthFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/MultiStrFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/MultiStrFinder.java index 3a2821a03..1982a671e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/MultiStrFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/MultiStrFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/PatternFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/PatternFinder.java index af503e0a7..8d4f37a42 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/PatternFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/PatternFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/StrFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/StrFinder.java index 22d391f9e..4cd68b293 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/StrFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/StrFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/TextFinder.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/TextFinder.java index 0d2ed7dbf..3266baab4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/TextFinder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/TextFinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/package-info.java index 7cef6d773..54d1579c6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/finder/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/package-info.java index da3344737..cfdabca75 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/PlaceholderParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/PlaceholderParser.java index 888147972..bc4be3613 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/PlaceholderParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/PlaceholderParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrFormatter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrFormatter.java index e027a5bc4..39206acb8 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrFormatter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrMatcher.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrMatcher.java index ec53da12b..29b2c99d2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrMatcher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrTemplate.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrTemplate.java index 6909f1951..de1435160 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrTemplate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/StrTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/package-info.java index 4d2146baf..6402c5b73 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/AbstractPlaceholderSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/AbstractPlaceholderSegment.java index d3775c60c..d68eae202 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/AbstractPlaceholderSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/AbstractPlaceholderSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/IndexedPlaceholderSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/IndexedPlaceholderSegment.java index 10d92a349..41b9ffa3d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/IndexedPlaceholderSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/IndexedPlaceholderSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/LiteralSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/LiteralSegment.java index 0c990d3a2..c5b4827f2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/LiteralSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/LiteralSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/NamedPlaceholderSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/NamedPlaceholderSegment.java index 99406ce7c..1ad739cb6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/NamedPlaceholderSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/NamedPlaceholderSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/SinglePlaceholderSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/SinglePlaceholderSegment.java index affaa29e3..883dcd4f4 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/SinglePlaceholderSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/SinglePlaceholderSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/StrTemplateSegment.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/StrTemplateSegment.java index 1769ee2ec..857c881d9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/StrTemplateSegment.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/StrTemplateSegment.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/package-info.java index 8a73b175c..17fa1b5df 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/segment/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/NamedPlaceholderStrTemplate.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/NamedPlaceholderStrTemplate.java index a8c2de6f5..aff16bfb0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/NamedPlaceholderStrTemplate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/NamedPlaceholderStrTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/SinglePlaceholderStrTemplate.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/SinglePlaceholderStrTemplate.java index 4605f9b71..e0aff6697 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/SinglePlaceholderStrTemplate.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/SinglePlaceholderStrTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/package-info.java index 5ee68e73c..97b7f6f1f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/placeholder/template/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacer.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacer.java index 75a063435..c83363e22 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacerV2.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacerV2.java index f614f6cc4..92440ed07 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacerV2.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/HighMultiReplacerV2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/LookupReplacer.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/LookupReplacer.java index 6fb99b7c4..0d95a2a0e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/LookupReplacer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/LookupReplacer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByChar.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByChar.java index 0b9404825..60d3ce0ce 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByChar.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByChar.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByStr.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByStr.java index 52fab669b..4588f6b80 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByStr.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/RangeReplacerByStr.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/ReplacerChain.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/ReplacerChain.java index bbe6ed638..1976961dc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/ReplacerChain.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/ReplacerChain.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/SearchReplacer.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/SearchReplacer.java index c1fe5c4a0..c04b0892a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/SearchReplacer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/SearchReplacer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/StrReplacer.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/StrReplacer.java index 9cc2b7158..7ed2f151f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/StrReplacer.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/StrReplacer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/package-info.java index 90248dda8..2ac4409ae 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/replacer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitIter.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitIter.java index 364765710..ff1c657f1 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitIter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitUtil.java index f0fd995cd..0b728db9f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/split/SplitUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/text/split/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/text/split/package-info.java index 582b46923..de34b8000 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/text/split/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/text/split/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/AsyncUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/AsyncUtil.java index 1e21e1494..6fb5e0ffe 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/AsyncUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/AsyncUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/BlockPolicy.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/BlockPolicy.java index 8c74d5e5c..1434ba280 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/BlockPolicy.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/BlockPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ConcurrencyTester.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ConcurrencyTester.java index 6abe64ef7..45ca73ffe 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ConcurrencyTester.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ConcurrencyTester.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/DelegatedExecutorService.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/DelegatedExecutorService.java index 10e6c0e4b..c168c6a90 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/DelegatedExecutorService.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/DelegatedExecutorService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ExecutorBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ExecutorBuilder.java index 232fadda5..9bb5ee14d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ExecutorBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ExecutorBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/FinalizableDelegatedExecutorService.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/FinalizableDelegatedExecutorService.java index 619b57485..fc88a2554 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/FinalizableDelegatedExecutorService.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/FinalizableDelegatedExecutorService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/GlobalThreadPool.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/GlobalThreadPool.java index 5105cb39a..88d5f4e44 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/GlobalThreadPool.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/GlobalThreadPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/NamedThreadFactory.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/NamedThreadFactory.java index 8060675ce..37b9d2313 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/NamedThreadFactory.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/NamedThreadFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/RejectPolicy.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/RejectPolicy.java index aa4e96c3f..21bc7e610 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/RejectPolicy.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/RejectPolicy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryUtil.java index 1d356d8c7..bd0b840e5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryableTask.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryableTask.java index 67a6d02e3..82b4591fc 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryableTask.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/RetryableTask.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/SemaphoreRunnable.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/SemaphoreRunnable.java index ffdcc200b..07b26fb6c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/SemaphoreRunnable.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/SemaphoreRunnable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/SimpleScheduler.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/SimpleScheduler.java index 707143874..2e068e0ec 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/SimpleScheduler.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/SimpleScheduler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/SyncFinisher.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/SyncFinisher.java index 834307c34..d21c8dfb5 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/SyncFinisher.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/SyncFinisher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadException.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadException.java index 4a1bf5851..32f4a8ce9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadException.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadFactoryBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadFactoryBuilder.java index 5f699c725..9508a7048 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadFactoryBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadFactoryBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadUtil.java index e8bc5bbd1..791ce8c10 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ThreadUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/LockUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/LockUtil.java index 7c227b007..5f0ebcb9b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/LockUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/LockUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoLock.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoLock.java index 00f96c876..7a0bcddb6 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoLock.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoLock.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoReadWriteLock.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoReadWriteLock.java index b970b3918..4fd388c8b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoReadWriteLock.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/NoReadWriteLock.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/package-info.java index 98cb2d870..1bfbeff77 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/lock/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/package-info.java index ba3abf2eb..64de1d275 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiter.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiter.java index ccb75b0ad..9045fa1d7 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiterConfig.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiterConfig.java index bbf626d8b..409514104 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiterConfig.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/RateLimiterConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/SemaphoreRateLimiter.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/SemaphoreRateLimiter.java index 52e69c526..5ba4d5bcd 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/SemaphoreRateLimiter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/SemaphoreRateLimiter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/TokenBucketRateLimiter.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/TokenBucketRateLimiter.java index a7a584c67..21172d815 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/TokenBucketRateLimiter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/TokenBucketRateLimiter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/package-info.java index ba53d0e14..51e7c04c9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/ratelimiter/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedInheritableThreadLocal.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedInheritableThreadLocal.java index 84eb8d96e..600a6e4c2 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedInheritableThreadLocal.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedInheritableThreadLocal.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedThreadLocal.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedThreadLocal.java index e8a1900cb..ad462e73a 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedThreadLocal.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/NamedThreadLocal.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/package-info.java index 400b5d729..10f6ee03f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/thread/threadlocal/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/BeanTree.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/BeanTree.java index 129f1846c..27d57a068 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/BeanTree.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/BeanTree.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/HierarchyIterator.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/HierarchyIterator.java index dfe60a342..6aff61b31 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/HierarchyIterator.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/HierarchyIterator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/LambdaTreeNodeConfig.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/LambdaTreeNodeConfig.java index 10a34f48d..ff9922b1b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/LambdaTreeNodeConfig.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/LambdaTreeNodeConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/MapTree.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/MapTree.java index eee16cfeb..681c3308f 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/MapTree.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/MapTree.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/Node.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/Node.java index 798b8b813..52b573b63 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/Node.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/Node.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeBuilder.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeBuilder.java index 49233ce18..744915e59 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeBuilder.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNode.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNode.java index ca721da4c..523a92a9d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNode.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNodeConfig.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNodeConfig.java index b96b6b434..cb3d3081d 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNodeConfig.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeNodeConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeUtil.java index 235a92543..7437b343e 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/TreeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/package-info.java index ce63adafc..25ee3f606 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/DefaultNodeParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/DefaultNodeParser.java index 155aebaba..3ee0e90e0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/DefaultNodeParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/DefaultNodeParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/NodeParser.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/NodeParser.java index 46f8bee6d..b14ab1c08 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/NodeParser.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/NodeParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/package-info.java index d8c602625..85d12f93b 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/tree/parser/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/BooleanUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/BooleanUtil.java index 6b6b80185..00c1277d9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/BooleanUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/BooleanUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/ByteUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/ByteUtil.java index 66fbd3435..71327fbff 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/ByteUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/ByteUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/CharsetUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/CharsetUtil.java index f4750ef50..26dfe159c 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/CharsetUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/CharsetUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/EnumUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/EnumUtil.java index ae4efb1b3..439a199f3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/EnumUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/EnumUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/JNDIUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/JNDIUtil.java index d34a19e7c..aad575faa 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/JNDIUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/JNDIUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/JdkUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/JdkUtil.java index 3e8bacec9..11a1e9bd9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/JdkUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/JdkUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/ObjUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/ObjUtil.java index ab9abafd7..4fa306cf3 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/ObjUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/ObjUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/RandomUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/RandomUtil.java index 660b6ec97..47f788097 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/RandomUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/RandomUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/RuntimeUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/RuntimeUtil.java index 80eb8a74a..d2599b431 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/RuntimeUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/RuntimeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/SystemUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/SystemUtil.java index e1f96828b..a6b6d58f9 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/SystemUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/SystemUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/util/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/util/package-info.java index a800301e2..ab5040230 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/util/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/util/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/DocumentBuilderUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/DocumentBuilderUtil.java index a9f300907..df7edf724 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/DocumentBuilderUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/DocumentBuilderUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/SAXParserFactoryUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/SAXParserFactoryUtil.java index 715339eef..3b8951385 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/SAXParserFactoryUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/SAXParserFactoryUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/UniversalNamespaceCache.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/UniversalNamespaceCache.java index a69d44dec..b21ba967c 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/UniversalNamespaceCache.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/UniversalNamespaceCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XPathUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XPathUtil.java index b7b76e084..cd412a6e7 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XPathUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XPathUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XXEUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XXEUtil.java index 23badd315..1fc36ab5d 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XXEUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XXEUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlConstants.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlConstants.java index e1d9ed15c..9b87e9b3b 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlConstants.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlConstants.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlFeatures.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlFeatures.java index 5268db8ac..2a1b80eed 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlFeatures.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlFeatures.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlMapper.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlMapper.java index f2f3ec9ce..7578b0850 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlMapper.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlMapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlSaxReader.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlSaxReader.java index 957795e77..a3840aeba 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlSaxReader.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlSaxReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlUtil.java index ec2da7bad..ac7a0f5c0 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlWriter.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlWriter.java index c35133c20..5ce08a71d 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlWriter.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/XmlWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/xml/package-info.java b/hutool-core/src/main/java/org/dromara/hutool/core/xml/package-info.java index e95f3ed80..c27476a1c 100755 --- a/hutool-core/src/main/java/org/dromara/hutool/core/xml/package-info.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/xml/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronConfig.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronConfig.java index 642d49aa0..6d184f15b 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronConfig.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronException.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronException.java index a40ffd165..05737533c 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronException.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronTimer.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronTimer.java index 37f47668d..dd0346644 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronTimer.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronTimer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronUtil.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronUtil.java index acc41133b..a64fb4a8b 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/CronUtil.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/CronUtil.java @@ -1,6 +1,6 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/Scheduler.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/Scheduler.java index 8bf7dc2db..e2672278d 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/Scheduler.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/Scheduler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutor.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutor.java index 9bf358473..b20bb5edf 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutor.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutorManager.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutorManager.java index 2e32c6dae..4b84fd65e 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutorManager.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskExecutorManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncher.java index e1b5f2cba..de0cd4871 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncherManager.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncherManager.java index ca4566adf..182186e41 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncherManager.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskLauncherManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskTable.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskTable.java index 6fe01468a..4d5faf1fb 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskTable.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/TaskTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/SimpleTaskListener.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/SimpleTaskListener.java index 716578510..bd99bfda2 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/SimpleTaskListener.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/SimpleTaskListener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListener.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListener.java index 45c17d17b..df2979d80 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListener.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListenerManager.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListenerManager.java index 691666830..ab90bee24 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListenerManager.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/TaskListenerManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/package-info.java index 90e01cb6d..df43e840a 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/listener/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/package-info.java index f7500f38f..0e1063392 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPattern.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPattern.java index 6170cfe7b..f480cb6fd 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPattern.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPattern.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternBuilder.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternBuilder.java index 75d4fc280..d56221726 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternBuilder.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternUtil.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternUtil.java index edc93506b..0c031d86f 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternUtil.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/CronPatternUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/Part.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/Part.java index cb0da6b63..b1bb7d849 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/Part.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/Part.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/PatternUtil.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/PatternUtil.java index 3fb099043..113a9c3ee 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/PatternUtil.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/PatternUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/AlwaysTrueMatcher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/AlwaysTrueMatcher.java index a04fb8cb2..d7487454c 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/AlwaysTrueMatcher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/AlwaysTrueMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/BoolArrayMatcher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/BoolArrayMatcher.java index e8fc6ea87..7d9671a72 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/BoolArrayMatcher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/BoolArrayMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/DayOfMonthMatcher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/DayOfMonthMatcher.java index 7eac58773..8a43f852b 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/DayOfMonthMatcher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/DayOfMonthMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PartMatcher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PartMatcher.java index dd94463f1..0a15cb1a3 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PartMatcher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PartMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PatternMatcher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PatternMatcher.java index a194736d3..be224e3f6 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PatternMatcher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/PatternMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/YearValueMatcher.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/YearValueMatcher.java index a2d43e5c7..5d764042e 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/YearValueMatcher.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/YearValueMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/package-info.java index 7be9e58dd..e72de599d 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/matcher/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/package-info.java index 9adf772b7..bd173485f 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PartParser.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PartParser.java index b9fbb5682..ef6574174 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PartParser.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PartParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PatternParser.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PatternParser.java index 8477642e6..638578366 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PatternParser.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/PatternParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/package-info.java index f9f4d2baa..52c956409 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/pattern/parser/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/CronTask.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/CronTask.java index 70032a3de..f48569896 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/CronTask.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/CronTask.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/InvokeTask.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/InvokeTask.java index 533284c31..4c3a0fbdb 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/InvokeTask.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/InvokeTask.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/RunnableTask.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/RunnableTask.java index 80e7a8987..236e1a1ef 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/RunnableTask.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/RunnableTask.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/Task.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/Task.java index ae9d0c62e..a4ca5a456 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/Task.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/Task.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/package-info.java index 04af0c5e3..66db9837d 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/task/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/task/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/SystemTimer.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/SystemTimer.java index 11ec1f07d..9106fc3d6 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/SystemTimer.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/SystemTimer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTask.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTask.java index c855cd1dd..96f2e0c2b 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTask.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTask.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTaskList.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTaskList.java index b903aac43..57994c646 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTaskList.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimerTaskList.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimingWheel.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimingWheel.java index 14b128660..078e2b844 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimingWheel.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/TimingWheel.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/package-info.java b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/package-info.java index 9e3706b3d..a999a7515 100644 --- a/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/package-info.java +++ b/hutool-cron/src/main/java/org/dromara/hutool/cron/timingwheel/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CertUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CertUtil.java index 1ce1514da..21bcfae74 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CertUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CertUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Cipher.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Cipher.java index 6c10896b6..1e376c4dc 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Cipher.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Cipher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CipherMode.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CipherMode.java index 7e46ec524..f28ccc438 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CipherMode.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CipherMode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CryptoException.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CryptoException.java index 9e5fa28f4..e910446c6 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CryptoException.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/CryptoException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/JceCipher.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/JceCipher.java index 473a9c0ea..b692ce03d 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/JceCipher.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/JceCipher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyStoreUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyStoreUtil.java index 1ac4af123..9c5f5ee4a 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyStoreUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyStoreUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyUtil.java index 4e3636874..82a721d2b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/KeyUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Mode.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Mode.java index 396161dc7..0ec04a031 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Mode.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Mode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Padding.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Padding.java index e9a03a0f3..cf90876b5 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Padding.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/Padding.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SecureUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SecureUtil.java index 1e0ff3dd0..d7761615c 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SecureUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SecureUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SignUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SignUtil.java index 5a1f3a6e6..a4b30e5e1 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SignUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SignUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SpecUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SpecUtil.java index 646f37d85..3d8583d94 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SpecUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/SpecUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AbstractAsymmetricCrypto.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AbstractAsymmetricCrypto.java index a088323aa..f92a53d0b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AbstractAsymmetricCrypto.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AbstractAsymmetricCrypto.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricAlgorithm.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricAlgorithm.java index 1acd88cf7..e6d956e75 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricAlgorithm.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricAlgorithm.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricCrypto.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricCrypto.java index a6309c59a..7fe4450a5 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricCrypto.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricCrypto.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricDecryptor.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricDecryptor.java index 59fc682d1..56bf9803f 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricDecryptor.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricDecryptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricEncryptor.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricEncryptor.java index 9448b78ab..ded731fcd 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricEncryptor.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/AsymmetricEncryptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/BaseAsymmetric.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/BaseAsymmetric.java index 28ee5f312..ae90ba072 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/BaseAsymmetric.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/BaseAsymmetric.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/ECIES.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/ECIES.java index b107d8fe8..3983827da 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/ECIES.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/ECIES.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/KeyType.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/KeyType.java index af4c87349..9183477d2 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/KeyType.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/KeyType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/RSA.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/RSA.java index 07f193787..f95454b4b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/RSA.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/RSA.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SM2.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SM2.java index 7dc56f818..bdce23f8d 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SM2.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SM2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/Sign.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/Sign.java index e2ac14c36..91b1f5d6f 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/Sign.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/Sign.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SignAlgorithm.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SignAlgorithm.java index 70e2bb109..298342cfe 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SignAlgorithm.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/SignAlgorithm.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/package-info.java index bb31a623f..4d8394996 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipher.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipher.java index e4562fdc8..c8cdffd37 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipher.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2024 Hutool Team. + * Copyright (c) 2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipherSpiImpl.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipherSpiImpl.java index 78a014c59..1624b1ce0 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipherSpiImpl.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCipherSpiImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCrypto.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCrypto.java index 3b67e5f0a..e75bf846f 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCrypto.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierCrypto.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKey.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKey.java index e67d50312..48bd0987b 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKey.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKeyPairGenerator.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKeyPairGenerator.java index 8408a1fdd..08cdaa1fb 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKeyPairGenerator.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierKeyPairGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPrivateKey.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPrivateKey.java index 38e063bdc..712b59b90 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPrivateKey.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPrivateKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPublicKey.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPublicKey.java index cc4821dff..e0df7eed5 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPublicKey.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/PaillierPublicKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/package-info.java index 100a9f8be..a9e8b4531 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/asymmetric/paillier/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ASN1Util.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ASN1Util.java index 146b800d0..1e3a85b2a 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ASN1Util.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ASN1Util.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCCipher.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCCipher.java index 675caf057..f015057f1 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCCipher.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCCipher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCUtil.java index 2c67b9954..45d0339a2 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/BCUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ECKeyUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ECKeyUtil.java index 2126922d8..2ce7e5940 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ECKeyUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/ECKeyUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/OpensslKeyUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/OpensslKeyUtil.java index 2a05ba1ad..be6bafa77 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/OpensslKeyUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/OpensslKeyUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/PemUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/PemUtil.java index ab7faeac8..40be52221 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/PemUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/PemUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/SmUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/SmUtil.java index 12499c156..d718d735d 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/SmUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/SmUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/package-info.java index f0a70f45a..4db2e6719 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/bc/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/BCrypt.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/BCrypt.java index fa13facbc..3d82d048e 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/BCrypt.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/BCrypt.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestAlgorithm.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestAlgorithm.java index ff9977b60..dc578e8a5 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestAlgorithm.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestAlgorithm.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestUtil.java index 99af3d4cc..b4fe1165e 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigestUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/Digester.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/Digester.java index c06a2abc5..9bb22a716 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/Digester.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/Digester.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigesterFactory.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigesterFactory.java index 599ad87ae..b06e1fec8 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigesterFactory.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/DigesterFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/MD5.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/MD5.java index 5fbcc4c1d..0ba8c7c68 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/MD5.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/MD5.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/SM3.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/SM3.java index fbfb10f08..4ddbefd1b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/SM3.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/SM3.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCHMacEngine.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCHMacEngine.java index 03a15728e..6b7e4f66a 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCHMacEngine.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCHMacEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCMacEngine.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCMacEngine.java index 146395c10..416aa18e4 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCMacEngine.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/BCMacEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/CBCBlockCipherMacEngine.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/CBCBlockCipherMacEngine.java index 479d8a8c4..0a1724879 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/CBCBlockCipherMacEngine.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/CBCBlockCipherMacEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HMac.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HMac.java index 9aa417671..1948510c1 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HMac.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HMac.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HmacAlgorithm.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HmacAlgorithm.java index 9363d2790..785d3865b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HmacAlgorithm.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/HmacAlgorithm.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/JCEMacEngine.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/JCEMacEngine.java index 51c8434a7..8e92e786c 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/JCEMacEngine.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/JCEMacEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/Mac.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/Mac.java index eece86942..fd6e7a411 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/Mac.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/Mac.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngine.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngine.java index 27f105001..740859815 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngine.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngineFactory.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngineFactory.java index b664a2755..03b57603a 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngineFactory.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/MacEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/SM4MacEngine.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/SM4MacEngine.java index da8403299..6da4d2ab0 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/SM4MacEngine.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/SM4MacEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/package-info.java index f0831c2f2..75b9fadaa 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/mac/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/HOTP.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/HOTP.java index 0f7395887..ba44feb59 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/HOTP.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/HOTP.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/TOTP.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/TOTP.java index 73ea9f869..e4b3195a1 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/TOTP.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/TOTP.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/package-info.java index a2a45e874..fdffb3fa1 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/otp/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/package-info.java index 90f165413..a5b318ffc 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/digest/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEInputStream.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEInputStream.java index f7fad057f..563fac082 100755 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEInputStream.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEOutputStream.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEOutputStream.java index d4c791a66..2cebd3b03 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEOutputStream.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLPBEOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLSaltParser.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLSaltParser.java index 2ee5e22d2..438227e65 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLSaltParser.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/OpenSSLSaltParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/SaltMagic.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/SaltMagic.java index 7c536fb64..936d32f51 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/SaltMagic.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/SaltMagic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/package-info.java index 56ad56f4a..f2f6c4c50 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/openssl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/package-info.java index 01451b131..7195bc366 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/BouncyCastleProviderFactory.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/BouncyCastleProviderFactory.java index 1babe58ce..4277325b5 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/BouncyCastleProviderFactory.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/BouncyCastleProviderFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/GlobalProviderFactory.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/GlobalProviderFactory.java index acce36d76..2432c7cc8 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/GlobalProviderFactory.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/GlobalProviderFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/ProviderFactory.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/ProviderFactory.java index 571012eef..17c9755a3 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/ProviderFactory.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/ProviderFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/package-info.java index 176c5d21e..36659e7f2 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/provider/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/SaslUtil.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/SaslUtil.java index f14b542b5..44881089b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/SaslUtil.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/SaslUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/package-info.java index 15b376d54..305700e2b 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/sasl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/AES.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/AES.java index 9e209d087..827b2bcdc 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/AES.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/AES.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ChaCha20.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ChaCha20.java index 357c46e68..109e53c03 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ChaCha20.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ChaCha20.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DES.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DES.java index 8b0bab747..990e47c8c 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DES.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DES.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DESede.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DESede.java index 242eda87a..8df09d8c8 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DESede.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/DESede.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/FPE.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/FPE.java index 9c57d5b17..a58401572 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/FPE.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/FPE.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/PBKDF2.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/PBKDF2.java index 5c2674d73..7f178d134 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/PBKDF2.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/PBKDF2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SM4.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SM4.java index eee7f4ec9..1f5c026f3 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SM4.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SM4.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricAlgorithm.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricAlgorithm.java index fa2988277..c767e9912 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricAlgorithm.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricAlgorithm.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricCrypto.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricCrypto.java index e3845f9cc..80dc6ffca 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricCrypto.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricCrypto.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricDecryptor.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricDecryptor.java index 66943fc51..e36f23972 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricDecryptor.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricDecryptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricEncryptor.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricEncryptor.java index d836812f8..3de1c4336 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricEncryptor.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/SymmetricEncryptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/Vigenere.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/Vigenere.java index c14090e05..bd155c7d8 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/Vigenere.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/Vigenere.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/XXTEA.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/XXTEA.java index 96b807969..bc7b4803a 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/XXTEA.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/XXTEA.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ZUC.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ZUC.java index 49ee5df35..562765450 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ZUC.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/ZUC.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/package-info.java b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/package-info.java index 8afabef33..613d939e0 100644 --- a/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/package-info.java +++ b/hutool-crypto/src/main/java/org/dromara/hutool/crypto/symmetric/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-crypto/src/main/resources/META-INF/services/org.dromara.hutool.crypto.provider.ProviderFactory b/hutool-crypto/src/main/resources/META-INF/services/org.dromara.hutool.crypto.provider.ProviderFactory index 313dc4aab..3115b5d6f 100644 --- a/hutool-crypto/src/main/resources/META-INF/services/org.dromara.hutool.crypto.provider.ProviderFactory +++ b/hutool-crypto/src/main/resources/META-INF/services/org.dromara.hutool.crypto.provider.ProviderFactory @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/AbstractDb.java b/hutool-db/src/main/java/org/dromara/hutool/db/AbstractDb.java index 8207cee99..7333a040a 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/AbstractDb.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/AbstractDb.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ActiveEntity.java b/hutool-db/src/main/java/org/dromara/hutool/db/ActiveEntity.java index 03880f460..af7330117 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ActiveEntity.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ActiveEntity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ConnectionHolder.java b/hutool-db/src/main/java/org/dromara/hutool/db/ConnectionHolder.java index da4588ad6..27e094c5e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ConnectionHolder.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ConnectionHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/DaoTemplate.java b/hutool-db/src/main/java/org/dromara/hutool/db/DaoTemplate.java index b10781b3e..cd581bbbc 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/DaoTemplate.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/DaoTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/Db.java b/hutool-db/src/main/java/org/dromara/hutool/db/Db.java index f7f3405fa..416c8fce8 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/Db.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/Db.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/DbException.java b/hutool-db/src/main/java/org/dromara/hutool/db/DbException.java index 1064705f5..f1687830a 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/DbException.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/DbException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/DefaultConnectionHolder.java b/hutool-db/src/main/java/org/dromara/hutool/db/DefaultConnectionHolder.java index 01006d844..ea838d400 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/DefaultConnectionHolder.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/DefaultConnectionHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/DialectRunner.java b/hutool-db/src/main/java/org/dromara/hutool/db/DialectRunner.java index db2aaad54..2edd73051 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/DialectRunner.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/DialectRunner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/Entity.java b/hutool-db/src/main/java/org/dromara/hutool/db/Entity.java index b959acfa1..b661f9765 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/Entity.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/Entity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/Page.java b/hutool-db/src/main/java/org/dromara/hutool/db/Page.java index eb3c0d327..7db0c3b11 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/Page.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/Page.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/PageResult.java b/hutool-db/src/main/java/org/dromara/hutool/db/PageResult.java index 947614aae..e34cb332f 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/PageResult.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/PageResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/Session.java b/hutool-db/src/main/java/org/dromara/hutool/db/Session.java index cbc411384..fb8c0c2d3 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/Session.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/Session.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ThreadLocalConnection.java b/hutool-db/src/main/java/org/dromara/hutool/db/ThreadLocalConnection.java index f08ebb51e..7e4e195ea 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ThreadLocalConnection.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ThreadLocalConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/config/ConfigParser.java b/hutool-db/src/main/java/org/dromara/hutool/db/config/ConfigParser.java index 981e6b039..85ddd2cf4 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/config/ConfigParser.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/config/ConfigParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/config/ConnectionConfig.java b/hutool-db/src/main/java/org/dromara/hutool/db/config/ConnectionConfig.java index e9f2a9fc4..097affa09 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/config/ConnectionConfig.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/config/ConnectionConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/config/DSKeys.java b/hutool-db/src/main/java/org/dromara/hutool/db/config/DSKeys.java index 551628303..64ef534b6 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/config/DSKeys.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/config/DSKeys.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/config/DbConfig.java b/hutool-db/src/main/java/org/dromara/hutool/db/config/DbConfig.java index 0db618acf..d7a3bd9d1 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/config/DbConfig.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/config/DbConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/config/SettingConfigParser.java b/hutool-db/src/main/java/org/dromara/hutool/db/config/SettingConfigParser.java index abfb92a56..2c0f06708 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/config/SettingConfigParser.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/config/SettingConfigParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/config/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/config/package-info.java index c6c0f48af..7fa5618e0 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/config/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/config/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/Dialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/Dialect.java index c324e7932..285f37847 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/Dialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/Dialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectFactory.java index 285db6e2d..74765e901 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectName.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectName.java index 6cea1e8bb..feb7f09ea 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectName.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/DialectName.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/AnsiSqlDialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/AnsiSqlDialect.java index 399b452d6..99733c485 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/AnsiSqlDialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/AnsiSqlDialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/DmDialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/DmDialect.java index 56ebf519b..0dbc87a0b 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/DmDialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/DmDialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/H2Dialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/H2Dialect.java index a66848730..e5d4a0314 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/H2Dialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/H2Dialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/MysqlDialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/MysqlDialect.java index 5050ed0e1..83c3e99d7 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/MysqlDialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/MysqlDialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/OracleDialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/OracleDialect.java index c555a3869..49ec50763 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/OracleDialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/OracleDialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PhoenixDialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PhoenixDialect.java index 1b3dfeb3b..42b9ce914 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PhoenixDialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PhoenixDialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PostgresqlDialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PostgresqlDialect.java index 397b5e281..26290bed3 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PostgresqlDialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/PostgresqlDialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2005Dialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2005Dialect.java index 49d623bbf..f9def5602 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2005Dialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2005Dialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2012Dialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2012Dialect.java index f26a6fd9b..25a053f8b 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2012Dialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/SqlServer2012Dialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/Sqlite3Dialect.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/Sqlite3Dialect.java index aa7253c5c..8b22e6814 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/Sqlite3Dialect.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/Sqlite3Dialect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/package-info.java index 5edc1402d..77a6e963e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/impl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/package-info.java index a2d940a4f..41013a45e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/dialect/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/dialect/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverIdentifier.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverIdentifier.java index bf9e95cbd..ebbbca47f 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverIdentifier.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverIdentifier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverNames.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverNames.java index 6b3be63f8..425674582 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverNames.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverNames.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverUtil.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverUtil.java index f3bbc0d9b..6597841e7 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverUtil.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/DriverUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/Db2DriverMatcher.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/Db2DriverMatcher.java index ab2526a6b..00f0e0d2d 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/Db2DriverMatcher.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/Db2DriverMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/DriverMatcher.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/DriverMatcher.java index 65adfbf3c..731cffd73 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/DriverMatcher.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/DriverMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/MysqlDriverMatcher.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/MysqlDriverMatcher.java index b63792e47..c430b3f33 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/MysqlDriverMatcher.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/MysqlDriverMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/StartsWithDriverMatcher.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/StartsWithDriverMatcher.java index 16dd40b98..a4819be30 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/StartsWithDriverMatcher.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/StartsWithDriverMatcher.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/package-info.java index 1ef472bbb..23ab39528 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/matcher/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/driver/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/driver/package-info.java index 336146bf4..4bdf5dd61 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/driver/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/driver/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/AbstractDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/AbstractDSFactory.java index e90d01fb5..a49870ca2 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/AbstractDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/AbstractDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSFactory.java index f7969ab97..4937afbd4 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSPool.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSPool.java index 613551635..1e09ace41 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSPool.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSPool.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSUtil.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSUtil.java index c00e21686..802e78f28 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSUtil.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSWrapper.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSWrapper.java index e42d8969a..cb37578d7 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSWrapper.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/DSWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/BeeDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/BeeDSFactory.java index 7b3468152..b5ba69410 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/BeeDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/BeeDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/package-info.java index 604a44dc5..9f8743bc5 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/bee/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/C3p0DSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/C3p0DSFactory.java index eb2099872..11c5e3f15 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/C3p0DSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/C3p0DSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/package-info.java index 16d754f1a..5ecdb0f4c 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/c3p0/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/DbcpDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/DbcpDSFactory.java index cae02c50d..49f0bccac 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/DbcpDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/DbcpDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/package-info.java index deceabbe0..31cf9039a 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/dbcp/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/DruidDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/DruidDSFactory.java index c2a8c6ac1..af5380510 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/DruidDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/DruidDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/package-info.java index 3a3ee0774..593d8e724 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/druid/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/HikariDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/HikariDSFactory.java index 6673130ef..495db6132 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/HikariDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/HikariDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/package-info.java index 15bb03941..630f50934 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/hikari/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/JndiDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/JndiDSFactory.java index 6096b236a..31dce083f 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/JndiDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/JndiDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/package-info.java index c7b02655a..3f2375182 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/jndi/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/package-info.java index a3f08a27d..19d8158d0 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/ConnectionWrapper.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/ConnectionWrapper.java index c037878d1..dde9c4451 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/ConnectionWrapper.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/ConnectionWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledConnection.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledConnection.java index e13f3d4ee..1fe4519f7 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledConnection.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDSFactory.java index c16e007be..c80179719 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDataSource.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDataSource.java index 472405b47..7d7d43d16 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDataSource.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/PooledDataSource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/package-info.java index 40e1b5a0e..cc57aae57 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/pooled/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/AbstractDataSource.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/AbstractDataSource.java index ee937c466..91a2aa5b0 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/AbstractDataSource.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/AbstractDataSource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDSFactory.java index e189bf3e8..9443c2e2b 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDataSource.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDataSource.java index c5202c77f..435f0a33c 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDataSource.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/SimpleDataSource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/package-info.java index fa0bc42bf..b174c9d86 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/simple/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/TomcatDSFactory.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/TomcatDSFactory.java index 377184288..7cfaa38b8 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/TomcatDSFactory.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/TomcatDSFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/package-info.java index f551da471..39c66427f 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/ds/tomcat/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanHandler.java index 24d350b1e..4d315a45e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanListHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanListHandler.java index 836fb0a6d..a9b648f64 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanListHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/BeanListHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityHandler.java index a970121fe..3cecfd8ce 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityListHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityListHandler.java index 1667ddd8a..58d095ac9 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityListHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntityListHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntitySetHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntitySetHandler.java index 953e53af9..82f9b82dc 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntitySetHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/EntitySetHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/NumberHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/NumberHandler.java index 5f953e8c8..bb1b01624 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/NumberHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/NumberHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/PageResultHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/PageResultHandler.java index 7fa8d2c6b..e28a46e47 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/PageResultHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/PageResultHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/ResultSetUtil.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/ResultSetUtil.java index 4bf064250..373025154 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/ResultSetUtil.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/ResultSetUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/RsHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/RsHandler.java index 4711610a2..6cb544260 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/RsHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/RsHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/StringHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/StringHandler.java index 9a14b96ee..b9f4d9ad9 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/StringHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/StringHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/ValueListHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/ValueListHandler.java index 93c180ccd..cb9b88a6d 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/ValueListHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/ValueListHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/package-info.java index 7c9ae4c80..6876419d2 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/AbsRowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/AbsRowHandler.java index 931ccfecd..5a29dd84d 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/AbsRowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/AbsRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ArrayRowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ArrayRowHandler.java index ccf0d7649..e76a54c1e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ArrayRowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ArrayRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/BeanRowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/BeanRowHandler.java index e917e3e0c..c35c13995 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/BeanRowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/BeanRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/EntityRowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/EntityRowHandler.java index ac9e58bc8..fc0920e71 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/EntityRowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/EntityRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ListRowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ListRowHandler.java index 8e101373a..90da86a2d 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ListRowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/ListRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/RowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/RowHandler.java index 4791efe7e..f424caba3 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/RowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/RowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/StringRowHandler.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/StringRowHandler.java index 2e2b91f50..19dcf0a62 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/StringRowHandler.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/StringRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/package-info.java index aea372a8a..7477ac6d3 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/handler/row/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/Column.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/Column.java index e66df7c01..c9f6f15e5 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/Column.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/Column.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/ColumnIndexInfo.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/ColumnIndexInfo.java index 3ac45ea65..ad9e7ecbe 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/ColumnIndexInfo.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/ColumnIndexInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/DatabaseMetaDataWrapper.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/DatabaseMetaDataWrapper.java index 1bf49fe19..c90f0a596 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/DatabaseMetaDataWrapper.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/DatabaseMetaDataWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/IndexInfo.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/IndexInfo.java index 2c6018492..301aecc61 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/IndexInfo.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/IndexInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/JdbcType.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/JdbcType.java index 986f7c17c..f3ef03f0c 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/JdbcType.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/JdbcType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/MetaUtil.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/MetaUtil.java index 3a93592ed..b43f6be38 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/MetaUtil.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/MetaUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/ResultColumn.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/ResultColumn.java index d10328fde..2cb743d0e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/ResultColumn.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/ResultColumn.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/Table.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/Table.java index c59de0c2e..6cc6bd21f 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/Table.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/Table.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/TableType.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/TableType.java index 794772a4a..2958c05a7 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/TableType.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/TableType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/meta/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/meta/package-info.java index 482bc69f3..3fe26fef8 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/meta/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/meta/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/package-info.java index bcd96c38d..78d640d37 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/BoundSql.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/BoundSql.java index 7a0c10756..772f45ba0 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/BoundSql.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/BoundSql.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Condition.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Condition.java index 84dfca999..8dab3daf7 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Condition.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Condition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionBuilder.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionBuilder.java index a2d3b1d7f..191bfb302 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionBuilder.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionGroup.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionGroup.java index 6df5ef76e..485667852 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionGroup.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/ConditionGroup.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Direction.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Direction.java index 73fff005a..7ba19f02c 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Direction.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Direction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/LogicalOperator.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/LogicalOperator.java index 65e02f00a..575d01bed 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/LogicalOperator.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/LogicalOperator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/NamedSql.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/NamedSql.java index e678490ab..204df2b9a 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/NamedSql.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/NamedSql.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Order.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Order.java index 995c07b17..107c33e8d 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Order.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Order.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Query.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Query.java index f8240cb38..457d1c6f6 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/Query.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/Query.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/QuoteWrapper.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/QuoteWrapper.java index a1f335137..fc8b699b5 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/QuoteWrapper.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/QuoteWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlBuilder.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlBuilder.java index 555881804..0d8f22b0b 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlBuilder.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlExecutor.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlExecutor.java index 80e3de9c2..94d8f59a2 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlExecutor.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlExecutor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlFormatter.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlFormatter.java index a52f2f778..bd65a6527 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlFormatter.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlLog.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlLog.java index 1f731f87c..9623fe982 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlLog.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlUtil.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlUtil.java index 2fc3151ec..a6f655615 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlUtil.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/SqlUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementBuilder.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementBuilder.java index 8656b45b9..866f923c4 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementBuilder.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementUtil.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementUtil.java index 24debe767..36d838c8e 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementUtil.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementWrapper.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementWrapper.java index 1f50bd5ed..671c6537d 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementWrapper.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/StatementWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilter.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilter.java index d88314fdf..3bab16113 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilter.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilterChain.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilterChain.java index 2640670fa..f93ccad3a 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilterChain.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlFilterChain.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlLogFilter.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlLogFilter.java index f72db9cf4..1164a6859 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlLogFilter.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/SqlLogFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/package-info.java index 20207ba2f..bd3e9de0b 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/filter/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/sql/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/sql/package-info.java index 239cedea1..77c9e4aac 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/sql/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/sql/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/transaction/TransactionLevel.java b/hutool-db/src/main/java/org/dromara/hutool/db/transaction/TransactionLevel.java index 4732c755e..efb06ff06 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/transaction/TransactionLevel.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/transaction/TransactionLevel.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/java/org/dromara/hutool/db/transaction/package-info.java b/hutool-db/src/main/java/org/dromara/hutool/db/transaction/package-info.java index c0e767103..09098f259 100644 --- a/hutool-db/src/main/java/org/dromara/hutool/db/transaction/package-info.java +++ b/hutool-db/src/main/java/org/dromara/hutool/db/transaction/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-db/src/main/resources/META-INF/services/org.dromara.hutool.db.ds.DSFactory b/hutool-db/src/main/resources/META-INF/services/org.dromara.hutool.db.ds.DSFactory index f55ca40a1..faae6324f 100644 --- a/hutool-db/src/main/resources/META-INF/services/org.dromara.hutool.db.ds.DSFactory +++ b/hutool-db/src/main/resources/META-INF/services/org.dromara.hutool.db.ds.DSFactory @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/Aspect.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/Aspect.java index dbcc1d2f9..687038b53 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/Aspect.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/Aspect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/ProxyUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/ProxyUtil.java index 071854a5a..6f4c80808 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/ProxyUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/ProxyUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/SimpleInterceptor.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/SimpleInterceptor.java index a3bd6cc81..6c4d5262f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/SimpleInterceptor.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/SimpleInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/SimpleAspect.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/SimpleAspect.java index a60617424..6e34dd844 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/SimpleAspect.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/SimpleAspect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/TimeIntervalAspect.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/TimeIntervalAspect.java index 3eea72972..79e833edd 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/TimeIntervalAspect.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/TimeIntervalAspect.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/package-info.java index 63fdff421..f8897035c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/aspects/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngine.java index ab8334c39..545241bca 100755 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngineFactory.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngineFactory.java index 99a8dc23c..02f8fde90 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngineFactory.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/ProxyEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkInterceptor.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkInterceptor.java index 88046d2a4..f794b51e6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkInterceptor.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkProxyEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkProxyEngine.java index 34d0e3013..520b97cdb 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkProxyEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/JdkProxyEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/package-info.java index c4929049c..ffb0aebe0 100755 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/jdk/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/package-info.java index fb69ad9f0..64e408289 100755 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibInterceptor.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibInterceptor.java index 3993002c2..a2a18c1a9 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibInterceptor.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibProxyEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibProxyEngine.java index 5f190c3fb..536db3e0e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibProxyEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/SpringCglibProxyEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/package-info.java index 3a19cf04a..2d11e09f8 100755 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/engine/spring/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/package-info.java index 0508bb7c9..00f547e86 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/aop/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressException.java index 7bfb7e55e..9e0e93d42 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressUtil.java index b0ea9f2ad..fd5e734d7 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/CompressUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/Archiver.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/Archiver.java index cc6027cd1..df9c36b6d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/Archiver.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/Archiver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/SevenZArchiver.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/SevenZArchiver.java index 34f875633..20e358d04 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/SevenZArchiver.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/SevenZArchiver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/StreamArchiver.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/StreamArchiver.java index 23f82af23..20d20a227 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/StreamArchiver.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/StreamArchiver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/package-info.java index aa96070cc..71c98746a 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/archiver/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Extractor.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Extractor.java index 188c3f22f..55ab021b1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Extractor.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Extractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Seven7EntryInputStream.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Seven7EntryInputStream.java index bea50f4de..44379d73e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Seven7EntryInputStream.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/Seven7EntryInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/SevenZExtractor.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/SevenZExtractor.java index fb4cb6767..4013c9995 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/SevenZExtractor.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/SevenZExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/StreamExtractor.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/StreamExtractor.java index 4d726f6e2..f97abf99b 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/StreamExtractor.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/StreamExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/package-info.java index 69aba63a5..7c0d454d2 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/extractor/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/package-info.java index a630c67fd..3372b732b 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/compress/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/EmojiUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/EmojiUtil.java index c9c3359c0..791f5f413 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/EmojiUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/EmojiUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/package-info.java index 57f70ea67..adea27dc1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/emoji/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/AbstractFtp.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/AbstractFtp.java index 89b659397..924eb0808 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/AbstractFtp.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/AbstractFtp.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/CommonsFtp.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/CommonsFtp.java index 59f19d7ca..f6cd904dc 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/CommonsFtp.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/CommonsFtp.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/Ftp.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/Ftp.java index 3ed5f6076..84dbbd963 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/Ftp.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/Ftp.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpConfig.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpConfig.java index 4cc5c0192..9c149c6fd 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpConfig.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpException.java index cd4f1371a..1351365b1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpMode.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpMode.java index 2c640ece3..38be39cd4 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpMode.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/FtpMode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/SimpleFtpServer.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/SimpleFtpServer.java index a14b472df..03187b884 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/SimpleFtpServer.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/SimpleFtpServer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/package-info.java index 47a93f24d..298bb680d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ftp/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/GlobalMailAccount.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/GlobalMailAccount.java index 8e7586c9c..14f4ec6fb 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/GlobalMailAccount.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/GlobalMailAccount.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/InternalMailUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/InternalMailUtil.java index bd2b02806..58234bd4b 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/InternalMailUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/InternalMailUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/Mail.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/Mail.java index 48f8565bf..7535ffd33 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/Mail.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/Mail.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailAccount.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailAccount.java index 85448f9c2..5e98634c5 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailAccount.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailAccount.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailException.java index 35903e2bb..12379e624 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailUtil.java index b77a2b261..f7895039e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/MailUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/package-info.java index 3da10fa87..ed65153da 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/mail/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/HostInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/HostInfo.java index 55e08e545..362cf0b25 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/HostInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/HostInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaInfo.java index 5a57a549c..d49062b9e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaRuntimeInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaRuntimeInfo.java index 57463d18a..b9eeac4a0 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaRuntimeInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaRuntimeInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaSpecInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaSpecInfo.java index 490b232da..d0f1d6edb 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaSpecInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JavaSpecInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmInfo.java index 967fa3673..09b370654 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmSpecInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmSpecInfo.java index 77b890c16..2e88e014c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmSpecInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/JvmSpecInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementException.java index 51517579f..1ea0ab88d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementUtil.java index d1f5dfc6d..d3e8ceba7 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/ManagementUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/OsInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/OsInfo.java index d351da26c..317ce914d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/OsInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/OsInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/RuntimeInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/RuntimeInfo.java index bddc7caa8..11ff73ef3 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/RuntimeInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/RuntimeInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/SystemPropsKeys.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/SystemPropsKeys.java index e16956578..fc04353d2 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/SystemPropsKeys.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/SystemPropsKeys.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/UserInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/UserInfo.java index 9351957b4..c878a7e8c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/UserInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/UserInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuInfo.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuInfo.java index 7b65fcd41..dcb6d452f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuInfo.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuTicks.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuTicks.java index 100a24126..4bc7d95a8 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuTicks.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/CpuTicks.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/OshiUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/OshiUtil.java index be15a7be2..bc67aab28 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/OshiUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/OshiUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/package-info.java index c362e804c..8e28128c3 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/oshi/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/package-info.java index 47dbf395d..51fb419f6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/management/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/management/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/package-info.java index 6bd84d49f..aa56f9afa 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinException.java index 026987bcd..5caabf82c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinUtil.java index 1230d3dcb..5d6cc45b1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/PinyinUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngine.java index 08317a521..5dae4e88c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngineFactory.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngineFactory.java index 2848e7fd6..b65a4ebbe 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngineFactory.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/PinyinEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/Bopomofo4jEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/Bopomofo4jEngine.java index 32a3e7e45..1c94fc017 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/Bopomofo4jEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/Bopomofo4jEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/package-info.java index b36c744b4..2e61368ca 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/bopomofo4j/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/HoubbEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/HoubbEngine.java index 09e0d5761..8773f34ae 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/HoubbEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/HoubbEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/package-info.java index f2551fac8..d1bb55b05 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/houbb/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/JPinyinEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/JPinyinEngine.java index d237985cf..6e7a24cf3 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/JPinyinEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/JPinyinEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/package-info.java index 1dcbb3e68..36aa6851f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/jpinyin/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/package-info.java index 62c488912..0f50cc7d7 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/Pinyin4jEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/Pinyin4jEngine.java index ad938e695..464d61d4f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/Pinyin4jEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/Pinyin4jEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/package-info.java index 3fbbcb882..d6b58c8c5 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/pinyin4j/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/TinyPinyinEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/TinyPinyinEngine.java index ff8752afb..eed9975ca 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/TinyPinyinEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/TinyPinyinEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/package-info.java index 0a416f779..5dd0721ac 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/engine/tinypinyin/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/package-info.java index 3af8453ee..08f28e463 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/pinyin/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/BufferedImageLuminanceSource.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/BufferedImageLuminanceSource.java index cfae49e26..3df4d67bb 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/BufferedImageLuminanceSource.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/BufferedImageLuminanceSource.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrAsciiArt.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrAsciiArt.java index 59c0c1bb8..dc7f28c68 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrAsciiArt.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrAsciiArt.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeException.java index fd598bfe8..6c2e82f97 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeUtil.java index bd676d776..1765012c8 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrCodeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrConfig.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrConfig.java index ce161e80e..0babdbe74 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrConfig.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrDecoder.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrDecoder.java index 52696c38c..c1b6ebcf1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrDecoder.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrEncoder.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrEncoder.java index edea2292e..695c975bd 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrEncoder.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrEncoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrImage.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrImage.java index d74b4fac8..13a6859b3 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrImage.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrImage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrSVG.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrSVG.java index a3ff82c50..75e50e44e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrSVG.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/QrSVG.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/package-info.java index 7aa20ef3b..a1dc0df8a 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/qrcode/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/SpringUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/SpringUtil.java index 79cc392e5..ec297de89 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/SpringUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/SpringUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/BeanCopierCache.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/BeanCopierCache.java index cd07c856c..b34171765 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/BeanCopierCache.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/BeanCopierCache.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/CglibUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/CglibUtil.java index 247c444de..61e046dd5 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/CglibUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/CglibUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/package-info.java index 7eb3e6ad3..b314a3607 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/cglib/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/package-info.java index f6ca2ef90..6200859d6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/spring/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Connector.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Connector.java index 634c2b05a..fe286fbec 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Connector.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Connector.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Session.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Session.java index 973232d70..6bbbdfbad 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Session.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/Session.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/SshException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/SshException.java index 952c43a86..30d186826 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/SshException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/SshException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedSession.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedSession.java index 3cb5491b1..d3504bb16 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedSession.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedSession.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedUtil.java index aefdbe9e7..5baf0fd41 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/GanymedUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/package-info.java index 8bf8c7a21..d7f6c06b4 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/ganymed/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/ChannelType.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/ChannelType.java index 21442f07c..db02673aa 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/ChannelType.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/ChannelType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSession.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSession.java index 7c504e4bd..c938431f7 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSession.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSession.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSftp.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSftp.java index 08c20505b..ec0928033 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSftp.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschSftp.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschUtil.java index 98ff82cc4..cc2f665df 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/JschUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/package-info.java index a01d8d548..616f1ed0f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/jsch/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaSession.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaSession.java index d0641ed0b..96e593874 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaSession.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaSession.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaUtil.java index 474b626e9..ade197306 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/MinaUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/package-info.java index 7b23352bc..975b1b375 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/mina/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/package-info.java index 631917589..6aafb5869 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSession.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSession.java index 8b1f69d61..f13fa802d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSession.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSession.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSftp.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSftp.java index 3d6a9b9ae..f54b1cefd 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSftp.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjSftp.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjUtil.java index abfeb8365..5a3f74de1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/SshjUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/package-info.java index 47dfb0e21..156fa5f47 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/engine/sshj/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/package-info.java index c3ae0152c..8d69853c5 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/ssh/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/Template.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/Template.java index 753a00554..204a39108 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/Template.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/Template.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateConfig.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateConfig.java index dfd05d4de..28976d524 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateConfig.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateException.java index 79c489268..5262f6263 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateUtil.java index 03e24c27d..63920afd0 100755 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/TemplateUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngine.java index 9604772c0..1d852de13 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngineFactory.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngineFactory.java index 3a21de88a..09c52d15f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngineFactory.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/TemplateEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlEngine.java index 9d7291f0c..fc634f3d0 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlTemplate.java index fd8a824d8..b57aa62e4 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/BeetlTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/package-info.java index eadb886c7..e35ab35ec 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/beetl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyEngine.java index 0087dbf65..36ad9e52a 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyTemplate.java index c49234807..4e783c268 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/EnjoyTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/package-info.java index a444458e0..5b9b1221e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/enjoy/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerEngine.java index 67c2b36a3..24479e302 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerTemplate.java index 3926bba5d..8225ddd46 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/FreemarkerTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/SimpleStringTemplateLoader.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/SimpleStringTemplateLoader.java index 4097d124b..c2999c10f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/SimpleStringTemplateLoader.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/SimpleStringTemplateLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/package-info.java index 18fe4aa16..2eaa2883e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/freemarker/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickEngine.java index 7c0f266b1..11d645468 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickTemplate.java index 137c76eac..6fb4144fe 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/JetbrickTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/StringResourceLoader.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/StringResourceLoader.java index 200b3c5cb..6a879203b 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/StringResourceLoader.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/StringResourceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/package-info.java index a101e8b64..b0f3079a7 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/loader/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/package-info.java index db1d1307a..a8da6b040 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jetbrick/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteEngine.java index 65e95476a..03e8446b6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteTemplate.java index 628703975..4d6de66c6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/JteTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/SimpleStringCodeResolver.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/SimpleStringCodeResolver.java index 1e0b4e0d4..79ffbf7ba 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/SimpleStringCodeResolver.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/SimpleStringCodeResolver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/package-info.java index 132050941..febe1037f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/jte/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/package-info.java index d6e8f2118..b2ee60c60 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplate.java index 4ef6eb5b1..518eebe9e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplateEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplateEngine.java index 98b5ef347..aa320223b 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplateEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/PebbleTemplateEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/package-info.java index 9dc1cc956..d6ea5d9bc 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/pebble/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmEngine.java index 028d8f331..d04076634 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmTemplate.java index 295116fef..863f349a8 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/RythmTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/package-info.java index e76a0d062..0ef375704 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/rythm/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafEngine.java index 60f4acec4..2c4759b2d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafTemplate.java index 1ffd2f630..e0a7e8fa4 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/ThymeleafTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/package-info.java index 46cf13e68..2b2c2399c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/thymeleaf/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/SimpleStringResourceLoader.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/SimpleStringResourceLoader.java index 99b68b6da..607ac0e36 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/SimpleStringResourceLoader.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/SimpleStringResourceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityEngine.java index 8a87fd144..f4d4abd69 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityTemplate.java index 2b44461b8..d5906bbae 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/VelocityTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/package-info.java index 82e896793..726998c82 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/velocity/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitEngine.java index 2fd090a15..9a860f0c6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitTemplate.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitTemplate.java index 7178f2695..3a84802b3 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitTemplate.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/WitTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/package-info.java index 50715fb41..16e3da228 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/engine/wit/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/package-info.java index 280041520..56ed3fa0e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/template/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/template/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/AbstractResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/AbstractResult.java index cb101ef89..6a4cacb16 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/AbstractResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/AbstractResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Result.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Result.java index bd9167f8f..effe00620 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Result.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Result.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerException.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerException.java index a1cf34393..9d31e67a1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerException.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerUtil.java index d66757dd8..4c94c3d7b 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/TokenizerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Word.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Word.java index e97ff4a65..0ecfe1c09 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Word.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/Word.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngine.java index 311ad30fe..2fe5e58ec 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngineFactory.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngineFactory.java index 4ef150960..4105c186a 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngineFactory.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/TokenizerEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisEngine.java index e401b2a4d..c99d9cfa6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisResult.java index 0b601dc02..9317fe6f1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisWord.java index 7330ad41b..0e6838bfe 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/AnalysisWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/SmartcnEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/SmartcnEngine.java index 5cec6b3f7..c1dd81bb1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/SmartcnEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/SmartcnEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/package-info.java index 61d3c7377..6ae906f40 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/analysis/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjEngine.java index 7097d944a..5f3a3742e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjResult.java index 0285b341d..b41163899 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjWord.java index d51845f44..48d71d4a8 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/AnsjWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/package-info.java index 6a9acc70d..4267bd080 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ansj/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPEngine.java index 748e3aed5..26992b373 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPResult.java index 21a6040fa..64ec9c274 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPWord.java index 57928b283..451aed309 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/HanLPWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/package-info.java index e50559fa9..25a479f93 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/hanlp/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerEngine.java index d8dbaf53c..cc7bc1ede 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerResult.java index f8e853f00..c39b3cf15 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerWord.java index edf222bdc..3eda497a3 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/IKAnalyzerWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/package-info.java index 1043cfc90..4bc0040c2 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/ikanalyzer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegEngine.java index d3ba532e2..ee4e1c4dc 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegResult.java index eeaae7653..ba126ca0c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegWord.java index c0df31b6d..5c9de861c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/JcsegWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/package-info.java index b4b1852b0..aa898ed53 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jcseg/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaEngine.java index 57812a179..bd6e3f585 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaResult.java index 3ea1900f8..cbfb3dd3e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaWord.java index 1fa604b61..122b79ee1 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/JiebaWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/package-info.java index 2ba92d589..160eb2b69 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/jieba/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegEngine.java index aa3398fd5..35dba384f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegResult.java index 5d594a008..f860b5487 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegWord.java index 27c377d54..4d40fee62 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/MmsegWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/package-info.java index f6919b004..2e8d74b53 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mmseg/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpEngine.java index fc88e8b4d..c7958c5ec 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpResult.java index a59e5d8c5..85b02d39d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpWord.java index 27301931f..37e2bf894 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/MynlpWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/package-info.java index a5fa43bc6..a72159e4f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/mynlp/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/package-info.java index 9febdd607..b902ca55f 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordEngine.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordEngine.java index 61b114926..1b8106f4a 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordEngine.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordResult.java index 4277464c7..8c45032b6 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordWord.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordWord.java index 0452b3139..728cc2f5e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordWord.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/WordWord.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/package-info.java index f232e01a6..7b9218ef4 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/engine/word/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/package-info.java index 96dcab416..9f3d0fe20 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/tokenizer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/BeanValidationResult.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/BeanValidationResult.java index 17a728037..4c88fcd92 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/BeanValidationResult.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/BeanValidationResult.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/ValidationUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/ValidationUtil.java index f415ede51..757477a56 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/ValidationUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/ValidationUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/package-info.java index beb2bf310..c57997b3d 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/validation/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/JAXBUtil.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/JAXBUtil.java index 7bc89d2a2..f13b1b29c 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/JAXBUtil.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/JAXBUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/package-info.java b/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/package-info.java index 17088e132..6579e281e 100644 --- a/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/package-info.java +++ b/hutool-extra/src/main/java/org/dromara/hutool/extra/xml/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.aop.engine.ProxyEngine b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.aop.engine.ProxyEngine index fc89873d0..ceeb7780d 100644 --- a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.aop.engine.ProxyEngine +++ b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.aop.engine.ProxyEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.pinyin.engine.PinyinEngine b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.pinyin.engine.PinyinEngine index 38324c060..76b562216 100644 --- a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.pinyin.engine.PinyinEngine +++ b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.pinyin.engine.PinyinEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.template.engine.TemplateEngine b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.template.engine.TemplateEngine index e4ca8e211..6c5672cfc 100644 --- a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.template.engine.TemplateEngine +++ b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.template.engine.TemplateEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.tokenizer.engine.TokenizerEngine b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.tokenizer.engine.TokenizerEngine index 05a5e5999..079bfe013 100644 --- a/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.tokenizer.engine.TokenizerEngine +++ b/hutool-extra/src/main/resources/META-INF/services/org.dromara.hutool.extra.tokenizer.engine.TokenizerEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/GlobalCompressStreamRegister.java b/hutool-http/src/main/java/org/dromara/hutool/http/GlobalCompressStreamRegister.java index 148236941..361388b67 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/GlobalCompressStreamRegister.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/GlobalCompressStreamRegister.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/GlobalHeaders.java b/hutool-http/src/main/java/org/dromara/hutool/http/GlobalHeaders.java index 206027bc9..308f722c6 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/GlobalHeaders.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/GlobalHeaders.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/HttpException.java b/hutool-http/src/main/java/org/dromara/hutool/http/HttpException.java index f2228f6ad..40c6aa0f7 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/HttpException.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/HttpException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/HttpGlobalConfig.java b/hutool-http/src/main/java/org/dromara/hutool/http/HttpGlobalConfig.java index 9f1752b54..976a8e851 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/HttpGlobalConfig.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/HttpGlobalConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/HttpUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/HttpUtil.java index 2899ca7d9..a2e6b4d74 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/HttpUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/HttpUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/auth/HttpAuthUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/auth/HttpAuthUtil.java index e5359b19a..4daeda6ae 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/auth/HttpAuthUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/auth/HttpAuthUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/auth/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/auth/package-info.java index 270867acc..1af30ce5a 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/auth/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/auth/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/ClientConfig.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/ClientConfig.java index deeec3164..da08592ec 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/ClientConfig.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/ClientConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/HeaderOperation.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/HeaderOperation.java index ea63954bd..8adb230e0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/HeaderOperation.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/HeaderOperation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/HttpDownloader.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/HttpDownloader.java index 1697663ef..ac2baad05 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/HttpDownloader.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/HttpDownloader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/Request.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/Request.java index 0ef935f36..1ed86f1ef 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/Request.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/Request.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/Response.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/Response.java index 66037700f..4e3405f21 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/Response.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/Response.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/BytesBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/BytesBody.java index f4dffbbd3..db88f2a34 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/BytesBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/BytesBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/FormBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/FormBody.java index 0880fe636..bb2ae2af7 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/FormBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/FormBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/HttpBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/HttpBody.java index f484ebf1a..24a4347c0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/HttpBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/HttpBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartBody.java index 261de8309..44c69e8df 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartOutputStream.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartOutputStream.java index f50f0143b..349c10059 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartOutputStream.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/MultipartOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResourceBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResourceBody.java index 68527c7b8..dfe867926 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResourceBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResourceBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResponseBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResponseBody.java index 2d680f26d..7bb23cc86 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResponseBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/ResponseBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/StringBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/StringBody.java index 2b22bf7af..3039d6794 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/StringBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/StringBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/UrlEncodedFormBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/UrlEncodedFormBody.java index 72feba58d..0ce919554 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/UrlEncodedFormBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/UrlEncodedFormBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/package-info.java index 78cf87ca7..4abdfb65c 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/body/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/body/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/GlobalCookieManager.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/GlobalCookieManager.java index 0d346ca0d..34df14a3e 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/GlobalCookieManager.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/GlobalCookieManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/ThreadLocalCookieStore.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/ThreadLocalCookieStore.java index 01dab5a42..ba779162b 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/ThreadLocalCookieStore.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/ThreadLocalCookieStore.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/package-info.java index 863e5f51e..4a13e9693 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/cookie/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/AbstractClientEngine.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/AbstractClientEngine.java index 6fa8317ba..f6b6b5a77 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/AbstractClientEngine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/AbstractClientEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngine.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngine.java index 174dcba63..bdf6a636b 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngineFactory.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngineFactory.java index beace83cf..f98bce56b 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngineFactory.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/ClientEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4BodyEntity.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4BodyEntity.java index 73c0300c1..ed62b806a 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4BodyEntity.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4BodyEntity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Engine.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Engine.java index eda2e6881..4903d523d 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Engine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Engine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Response.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Response.java index ed79dd004..416cdd378 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Response.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/HttpClient4Response.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/package-info.java index 3cc44c349..84a0edf95 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient4/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5BodyEntity.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5BodyEntity.java index d7ec773ce..9a5590568 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5BodyEntity.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5BodyEntity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Engine.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Engine.java index 13c8c6c97..129a8ea67 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Engine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Engine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Response.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Response.java index 9604dcb61..13aea38b0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Response.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/HttpClient5Response.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/package-info.java index 5b0a18461..d7396821d 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/httpclient5/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/HttpUrlConnectionUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/HttpUrlConnectionUtil.java index 69e1cd817..fd46bffd7 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/HttpUrlConnectionUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/HttpUrlConnectionUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkClientEngine.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkClientEngine.java index 521a88b68..3ce4d139a 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkClientEngine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkClientEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpConnection.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpConnection.java index a967808cd..41b5139d1 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpConnection.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpInputStream.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpInputStream.java index a504ec95f..e992398a0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpInputStream.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpResponse.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpResponse.java index d2d41fe7d..6baeb88e7 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpResponse.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/JdkHttpResponse.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/package-info.java index 35675aa5d..2af98d061 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/jdk/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/BasicProxyAuthenticator.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/BasicProxyAuthenticator.java index ac16531c2..b304a30a1 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/BasicProxyAuthenticator.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/BasicProxyAuthenticator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpEngine.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpEngine.java index 80b5fcce0..fc57cd65d 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpEngine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpRequestBody.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpRequestBody.java index 352e49a55..f7bda9161 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpRequestBody.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpRequestBody.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpResponse.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpResponse.java index d0f084be0..1ea5ca628 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpResponse.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/OkHttpResponse.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/package-info.java index a65bc6311..bdb1af6a9 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/okhttp/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/package-info.java index dca4527a4..9101e4381 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java index 389c17115..c4ad25523 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlFilter.java b/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlFilter.java index 3bfe6b467..a222b1248 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlFilter.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlUtil.java index fe7d62358..bdd8e721e 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/html/HtmlUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/html/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/html/package-info.java index a943d8cce..7fbab8148 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/html/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/html/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentType.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentType.java index 0a134b280..65a77cdc2 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentType.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentTypeUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentTypeUtil.java index 47516ae46..b5a379c6b 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentTypeUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/ContentTypeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/HeaderName.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/HeaderName.java index fb1395f5f..4893d6261 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/HeaderName.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/HeaderName.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpHeaderUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpHeaderUtil.java index b0e24f271..27f062fdb 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpHeaderUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpHeaderUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpStatus.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpStatus.java index ebc8a0b00..62b3e12f0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpStatus.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/HttpStatus.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/Method.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/Method.java index 3617c6cf1..602c8ba5e 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/Method.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/Method.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/meta/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/meta/package-info.java index bdfb8bd2a..bdbbc23c9 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/meta/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/meta/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/package-info.java index 66eafd480..d63ede2e8 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/proxy/HttpProxy.java b/hutool-http/src/main/java/org/dromara/hutool/http/proxy/HttpProxy.java index 9bb12c75f..82201ecc0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/proxy/HttpProxy.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/proxy/HttpProxy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/proxy/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/proxy/package-info.java index 749d4762b..ef0481972 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/proxy/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/proxy/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpExchangeWrapper.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpExchangeWrapper.java index f23c1dc35..eb5383c57 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpExchangeWrapper.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpExchangeWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerBase.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerBase.java index 7477ecec8..50f6275b9 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerBase.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerBase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerRequest.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerRequest.java index fb6b25d43..e6acfb8a0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerRequest.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerRequest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerResponse.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerResponse.java index f4fc04209..c57c318db 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerResponse.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/HttpServerResponse.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/SimpleServer.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/SimpleServer.java index 15763dbb7..2f6eae681 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/SimpleServer.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/SimpleServer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/action/Action.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/action/Action.java index 883be4318..460c1b33e 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/action/Action.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/action/Action.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/action/RootAction.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/action/RootAction.java index a1f45e7f1..51b3d05cb 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/action/RootAction.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/action/RootAction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/action/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/action/package-info.java index 6da1875a1..68eb1ef52 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/action/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/action/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/DefaultExceptionFilter.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/DefaultExceptionFilter.java index 6a5578190..0fd9f74f9 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/DefaultExceptionFilter.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/DefaultExceptionFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/ExceptionFilter.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/ExceptionFilter.java index 93e05f92e..d4a71aa56 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/ExceptionFilter.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/ExceptionFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/HttpFilter.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/HttpFilter.java index d91774422..b72cf2640 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/HttpFilter.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/HttpFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/SimpleFilter.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/SimpleFilter.java index 7bee91b06..4227e94f4 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/SimpleFilter.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/SimpleFilter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/package-info.java index 7c9ad7d47..843e34056 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/filter/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/ActionHandler.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/ActionHandler.java index 37b5b46b8..5e1dbe398 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/ActionHandler.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/ActionHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/package-info.java index ab2496290..c1eeec9bc 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/handler/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/package-info.java index 58b0b93ee..ad5601a14 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/JavaxServletUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/JavaxServletUtil.java index 8a5b7b0b9..8bf1c245f 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/JavaxServletUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/JavaxServletUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/ServletUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/ServletUtil.java index a2524478d..4e763a627 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/ServletUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/ServletUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/package-info.java index 9cdee99d5..4902522fe 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/server/servlet/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/ssl/CustomProtocolsSSLFactory.java b/hutool-http/src/main/java/org/dromara/hutool/http/ssl/CustomProtocolsSSLFactory.java index 258035c62..05b99e971 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/ssl/CustomProtocolsSSLFactory.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/ssl/CustomProtocolsSSLFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/ssl/SSLInfo.java b/hutool-http/src/main/java/org/dromara/hutool/http/ssl/SSLInfo.java index c7e2059b3..1298e2fb1 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/ssl/SSLInfo.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/ssl/SSLInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/ssl/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/ssl/package-info.java index 863a037c1..e538f8bd9 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/ssl/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/ssl/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Browser.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Browser.java index 9145a3f41..2d0b57aa0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Browser.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Browser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/BrowserEngine.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/BrowserEngine.java index 694b3bf21..bb9f6fd98 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/BrowserEngine.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/BrowserEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/OS.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/OS.java index 5beb4969e..167da70c2 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/OS.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/OS.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Platform.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Platform.java index 81254fafc..857d570b0 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Platform.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/Platform.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgent.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgent.java index c3fb6d7f2..1bf4a07ff 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgent.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentInfo.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentInfo.java index bcfe548a3..6be382fbe 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentInfo.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentParser.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentParser.java index 6b0227f14..419a7e873 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentParser.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentUtil.java index 863fe0d4a..8205b3e7f 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/UserAgentUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/package-info.java index 79bca6090..36be070c5 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/useragent/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/useragent/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapClient.java b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapClient.java index 7730141bb..794f1398c 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapClient.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapClient.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapProtocol.java b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapProtocol.java index f581416b2..621020492 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapProtocol.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapProtocol.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapRuntimeException.java b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapRuntimeException.java index 51579b41c..377e8b802 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapRuntimeException.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapRuntimeException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapUtil.java b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapUtil.java index 9eeb8c30d..1edc62dc9 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapUtil.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/SoapUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/package-info.java index 5e8148e78..9578ff5e2 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/webservice/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/webservice/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-http/src/main/resources/META-INF/services/org.dromara.hutool.http.client.engine.ClientEngine b/hutool-http/src/main/resources/META-INF/services/org.dromara.hutool.http.client.engine.ClientEngine index b686108fe..1919be38e 100644 --- a/hutool-http/src/main/resources/META-INF/services/org.dromara.hutool.http.client.engine.ClientEngine +++ b/hutool-http/src/main/resources/META-INF/services/org.dromara.hutool.http.client.engine.ClientEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/InternalJSONUtil.java b/hutool-json/src/main/java/org/dromara/hutool/json/InternalJSONUtil.java index 45bdfc951..cb0998c19 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/InternalJSONUtil.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/InternalJSONUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSON.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSON.java index 0d1107232..1255c93e0 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSON.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSON.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONArray.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONArray.java index 0bdf7039e..9c3f059b6 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONArray.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONArray.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONConfig.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONConfig.java index 831f78943..e8ed62269 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONConfig.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONException.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONException.java index db0b10def..82bc7eb70 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONException.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONGetter.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONGetter.java index ae04f8f49..02a6e73e7 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONGetter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONGetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONObject.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONObject.java index 73640eca3..9bc47aae2 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONObject.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONObject.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONObjectIter.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONObjectIter.java index 33ee29b86..db27a6b1a 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONObjectIter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONObjectIter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONParser.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONParser.java index 39d57e0f8..e3fc6a0bf 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONParser.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONStrFormatter.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONStrFormatter.java index e4bc7c23a..d1266cf0c 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONStrFormatter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONStrFormatter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONSupport.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONSupport.java index 47804b55b..1e09390c8 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONSupport.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONSupport.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONTokener.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONTokener.java index 4f7b30049..591d0f4a3 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONTokener.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONTokener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/JSONUtil.java b/hutool-json/src/main/java/org/dromara/hutool/json/JSONUtil.java index 070dd763d..372ac8b3a 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/JSONUtil.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/JSONUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONConverter.java b/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONConverter.java index d018a3eb7..7dcfd7dd4 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONConverter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONGetterValueProvider.java b/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONGetterValueProvider.java index 0b3b2cab2..a39bed858 100755 --- a/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONGetterValueProvider.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/convert/JSONGetterValueProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/convert/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/convert/package-info.java index d42e5934a..d0c3246d6 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/convert/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/convert/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/AbstractJSONEngine.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/AbstractJSONEngine.java index 4718ef2c2..1c4622951 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/AbstractJSONEngine.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/AbstractJSONEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/FastJSON2Engine.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/FastJSON2Engine.java index c66190725..ab715ea4e 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/FastJSON2Engine.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/FastJSON2Engine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/GsonEngine.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/GsonEngine.java index 34be9952f..0f1d0276a 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/GsonEngine.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/GsonEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/HutoolJSONEngine.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/HutoolJSONEngine.java index 88133c2ab..4f30b301c 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/HutoolJSONEngine.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/HutoolJSONEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngine.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngine.java index 4e522f246..6398c3a64 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngine.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineConfig.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineConfig.java index b4d871ea8..f3639138e 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineConfig.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineFactory.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineFactory.java index d5dfc4dea..4bf314962 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineFactory.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JSONEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JacksonEngine.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JacksonEngine.java index 900266bd3..ec45794d6 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/JacksonEngine.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/JacksonEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/engine/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/engine/package-info.java index d6d96291e..ec7011e9d 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/engine/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/Claims.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/Claims.java index 21f700d70..081f4e9fc 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/Claims.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/Claims.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWT.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWT.java index b50eee4d2..177cf242d 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWT.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWT.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTException.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTException.java index 4e8bf66ab..fa5ba76f3 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTException.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTHeader.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTHeader.java index 270e81f71..39f0b3dcf 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTHeader.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTHeader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTPayload.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTPayload.java index f1965ad36..fc3e522f2 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTPayload.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTPayload.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTUtil.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTUtil.java index 5e213ed9f..58c7dc5e1 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTUtil.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTValidator.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTValidator.java index 246fa2b75..8634afe58 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTValidator.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/JWTValidator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/RegisteredPayload.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/RegisteredPayload.java index c49d09563..a657308e0 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/RegisteredPayload.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/RegisteredPayload.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/package-info.java index 9386f99a6..f2c23a946 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AlgorithmUtil.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AlgorithmUtil.java index 43cc26785..4bbccc018 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AlgorithmUtil.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AlgorithmUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AsymmetricJWTSigner.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AsymmetricJWTSigner.java index 154cb9821..67d8e02dc 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AsymmetricJWTSigner.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/AsymmetricJWTSigner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/EllipticCurveJWTSigner.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/EllipticCurveJWTSigner.java index fe66cf52b..ed1a85219 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/EllipticCurveJWTSigner.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/EllipticCurveJWTSigner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/HMacJWTSigner.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/HMacJWTSigner.java index 3dd620e3d..ac1da9491 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/HMacJWTSigner.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/HMacJWTSigner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSigner.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSigner.java index ef801c270..95ec9f994 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSigner.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSigner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSignerUtil.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSignerUtil.java index 3eb04db27..0c08bb6d5 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSignerUtil.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/JWTSignerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/NoneJWTSigner.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/NoneJWTSigner.java index 86f6e094a..4667ce9bb 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/NoneJWTSigner.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/NoneJWTSigner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/package-info.java index e3cfb8b6d..9139d494b 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/jwt/signers/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONArrayMapper.java b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONArrayMapper.java index a2b6f3185..1d649dd79 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONArrayMapper.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONArrayMapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONObjectMapper.java b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONObjectMapper.java index 3d00d626f..289e2c13c 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONObjectMapper.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONObjectMapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONValueMapper.java b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONValueMapper.java index 8a8d7abfe..cb9a3c2f8 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONValueMapper.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/JSONValueMapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/package-info.java index 486c79f43..31138738a 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/mapper/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/mapper/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/package-info.java index 8793f32f1..8e1385d48 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/DateJSONString.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/DateJSONString.java index 4b45f3a4d..576675085 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/DateJSONString.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/DateJSONString.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/GlobalSerializeMapping.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/GlobalSerializeMapping.java index 5b9f1657d..9ca81a3c3 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/GlobalSerializeMapping.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/GlobalSerializeMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONArraySerializer.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONArraySerializer.java index 700cbaf60..f5f359063 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONArraySerializer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONArraySerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONDeserializer.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONDeserializer.java index c5e40d562..4f8f5f9d5 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONDeserializer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONObjectSerializer.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONObjectSerializer.java index 2e4f3cc74..d0690fb03 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONObjectSerializer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONObjectSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONSerializer.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONSerializer.java index 3552b58b8..683a8430d 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONSerializer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONStringer.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONStringer.java index f7e08c669..ff38b1219 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONStringer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/JSONStringer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/TemporalAccessorSerializer.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/TemporalAccessorSerializer.java index 6d57d952a..0ac7131be 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/TemporalAccessorSerializer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/TemporalAccessorSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/package-info.java index cebd5c090..94f9d288a 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/serialize/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/serialize/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/BooleanValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/BooleanValueWriter.java index 225c1b558..f781edeb4 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/BooleanValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/BooleanValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/ClassValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/ClassValueWriter.java index 40932cfa1..d4b2ff906 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/ClassValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/ClassValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/DateValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/DateValueWriter.java index ffed60345..7a367cc30 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/DateValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/DateValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/GlobalValueWriters.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/GlobalValueWriters.java index 6fa03f9d7..48ca87238 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/GlobalValueWriters.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/GlobalValueWriters.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONStringValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONStringValueWriter.java index 75a40c711..83acc9a8d 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONStringValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONStringValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONValueWriter.java index 26f62e7eb..bb78e3279 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONWriter.java index cf43285af..126a2828d 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JSONWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JdkValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JdkValueWriter.java index 3c04413b0..5f9ab3eef 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/JdkValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/JdkValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberValueWriter.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberValueWriter.java index e0e166a8a..8b3fe4dd9 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberValueWriter.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberValueWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberWriteMode.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberWriteMode.java index 67f244ff2..6d455ee3a 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberWriteMode.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/NumberWriteMode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/writer/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/writer/package-info.java index 5d3715f4b..9fee0b355 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/writer/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/writer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLParser.java b/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLParser.java index fa2538e34..cc25314e4 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLParser.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLSerializer.java b/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLSerializer.java index 39fc4d063..5059f45f7 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLSerializer.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLSerializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLUtil.java b/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLUtil.java index 4a467ba7a..a532ecbb6 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLUtil.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/xml/JSONXMLUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/xml/ParseConfig.java b/hutool-json/src/main/java/org/dromara/hutool/json/xml/ParseConfig.java index 190409d75..a755849f6 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/xml/ParseConfig.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/xml/ParseConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/xml/XMLTokener.java b/hutool-json/src/main/java/org/dromara/hutool/json/xml/XMLTokener.java index 07be0ee14..14bba89fa 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/xml/XMLTokener.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/xml/XMLTokener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/java/org/dromara/hutool/json/xml/package-info.java b/hutool-json/src/main/java/org/dromara/hutool/json/xml/package-info.java index 05f939b72..66f758ef9 100644 --- a/hutool-json/src/main/java/org/dromara/hutool/json/xml/package-info.java +++ b/hutool-json/src/main/java/org/dromara/hutool/json/xml/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-json/src/main/resources/META-INF/services/org.dromara.hutool.json.engine.JSONEngine b/hutool-json/src/main/resources/META-INF/services/org.dromara.hutool.json.engine.JSONEngine index 45530ea27..c671b0c50 100644 --- a/hutool-json/src/main/resources/META-INF/services/org.dromara.hutool.json.engine.JSONEngine +++ b/hutool-json/src/main/resources/META-INF/services/org.dromara.hutool.json.engine.JSONEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/AbsLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/AbsLogEngine.java index 0854b4698..ba5d20ba9 100755 --- a/hutool-log/src/main/java/org/dromara/hutool/log/AbsLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/AbsLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/AbstractLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/AbstractLog.java index b4b320d20..e3b493e92 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/AbstractLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/AbstractLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/Log.java b/hutool-log/src/main/java/org/dromara/hutool/log/Log.java index 218d8045b..a29542d6e 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/Log.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/Log.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/LogFactory.java b/hutool-log/src/main/java/org/dromara/hutool/log/LogFactory.java index e79d5f456..c637d7b25 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/LogFactory.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/LogFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/LogUtil.java b/hutool-log/src/main/java/org/dromara/hutool/log/LogUtil.java index 5581bfd6f..f75b2ba9a 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/LogUtil.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/LogUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngine.java index 345fca861..2d3d6fa67 100755 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngineFactory.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngineFactory.java index b6e6ba01f..8ab1cfbe1 100755 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngineFactory.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/LogEngineFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog.java index 0341039ad..f07101e7d 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog4JLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog4JLog.java index c741600b1..81a8a09cc 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog4JLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLog4JLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLogEngine.java index ddae16a06..fc0a19d33 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/ApacheCommonsLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/package-info.java index f9e416f22..88745314d 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/commons/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLog.java index dac20806e..2f32c3dc1 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLogEngine.java index 4efefc4a0..1476ddc31 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleColorLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLog.java index ad442e261..5aaa76d16 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLogEngine.java index 0efbeec64..be5f333df 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/ConsoleLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/package-info.java index 091b862ae..b7ace965c 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/console/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLog.java index 78b1f85be..0a614ba66 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLogEngine.java index 85150d8d3..9c80cc8a8 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/JbossLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/package-info.java index 3d8b85ee3..626bacf4f 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jboss/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLog.java index 42129cb13..70bcae7d7 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLogEngine.java index a7041a3fc..f8d93f8c0 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/JdkLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/package-info.java index c7eb66b09..60a01f82d 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/jdk/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLog.java index 6e4b37974..4b00fbaa6 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLogEngine.java index 1c8ea59f1..7397e86f1 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/Log4jLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/package-info.java index 940b4a87d..a5115b173 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2Log.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2Log.java index f390feb5e..69c97dd85 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2Log.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2Log.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2LogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2LogEngine.java index d88f7dd02..b008b9580 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2LogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/Log4j2LogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/package-info.java index ef80ee5ce..9e2c40fcb 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/log4j2/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/package-info.java index c43a64928..5a36f8f8f 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLog.java index 1895686e0..5ffe67131 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLogEngine.java index d7f9b4bb8..d17a68ba4 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/Slf4jLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/package-info.java index 7df8f121e..eb90c4fda 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/slf4j/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog.java index a533772f9..7a2ffd645 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2.java index 6b6ed562e..e41afafdd 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2Engine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2Engine.java index 945155be8..c309993d7 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2Engine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLog2Engine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLogEngine.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLogEngine.java index 5c44bffcb..8d5c26d7b 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLogEngine.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/TinyLogEngine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/package-info.java index 4135b682d..fef91ab69 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/engine/tinylog/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/DebugLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/DebugLog.java index 3048a3917..937b297c2 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/DebugLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/DebugLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/ErrorLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/ErrorLog.java index bb8d1e54f..848dec294 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/ErrorLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/ErrorLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/InfoLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/InfoLog.java index 39b3c7400..bbc1de6b8 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/InfoLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/InfoLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/Level.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/Level.java index 2bb04cbc2..1c1504def 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/Level.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/Level.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/TraceLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/TraceLog.java index cb3ba9f7b..46c4ae0f7 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/TraceLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/TraceLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/WarnLog.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/WarnLog.java index b05cfdf0a..68f76a58a 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/WarnLog.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/WarnLog.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/level/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/level/package-info.java index 523f25f41..22e9c0541 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/level/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/level/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/java/org/dromara/hutool/log/package-info.java b/hutool-log/src/main/java/org/dromara/hutool/log/package-info.java index 6653da304..68813d814 100644 --- a/hutool-log/src/main/java/org/dromara/hutool/log/package-info.java +++ b/hutool-log/src/main/java/org/dromara/hutool/log/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-log/src/main/resources/META-INF/services/org.dromara.hutool.log.engine.LogEngine b/hutool-log/src/main/resources/META-INF/services/org.dromara.hutool.log.engine.LogEngine index af694cf48..323bdabd9 100644 --- a/hutool-log/src/main/resources/META-INF/services/org.dromara.hutool.log.engine.LogEngine +++ b/hutool-log/src/main/resources/META-INF/services/org.dromara.hutool.log.engine.LogEngine @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2024 Hutool Team. +# Copyright (c) 2013-2024 Hutool Team and hutool.cn # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/GlobalPoiConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/GlobalPoiConfig.java index aa9816737..385f057b3 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/GlobalPoiConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/GlobalPoiConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/POIException.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/POIException.java index bede45b05..3eb3533ac 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/POIException.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/POIException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/PoiChecker.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/PoiChecker.java index b32527868..d6906a592 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/PoiChecker.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/PoiChecker.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvBaseReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvBaseReader.java index 55436ac1e..cb8f844cb 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvBaseReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvBaseReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvConfig.java index 0f3a2a896..0adcce337 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvData.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvData.java index 83332dfdb..f2fd2ce7d 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvData.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvData.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvParser.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvParser.java index 400004ef2..c410469a7 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvParser.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReadConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReadConfig.java index 8a602ed5b..7d179ba30 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReadConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReadConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReader.java index bfe87318a..54e5d82cd 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvRow.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvRow.java index 4970dc325..a8a6edaf1 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvRow.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvRow.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvUtil.java index 01eb111a1..59cf3d4ba 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriteConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriteConfig.java index d1d40f155..03a79e387 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriteConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriteConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriter.java index 1fc79f99d..484c44f50 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/CsvWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/package-info.java index 5b5be0f45..3fcb99dbc 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/csv/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelBase.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelBase.java index 928062296..b0ba5c559 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelBase.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelBase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelConfig.java index 47d8d902e..85b0d3ebf 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelDateUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelDateUtil.java index a0ce3e841..f4498c86a 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelDateUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelDateUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelExtractorUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelExtractorUtil.java index 4a8f76ea9..7f321ffa9 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelExtractorUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelExtractorUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelFileUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelFileUtil.java index 957ae6f3d..9e3082a6e 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelFileUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelFileUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgType.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgType.java index a58d40b14..1db7dabf6 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgType.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgUtil.java index 1ff40e35f..7afcc61db 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelImgUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelUtil.java index 12342be8b..69f383239 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/ExcelUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/RowUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/RowUtil.java index d766d7f1e..d48b9039c 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/RowUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/RowUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SheetUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SheetUtil.java index 5a69b7c7f..5501f9271 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SheetUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SheetUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SimpleClientAnchor.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SimpleClientAnchor.java index edd339cb9..4a074170f 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SimpleClientAnchor.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/SimpleClientAnchor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/WorkbookUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/WorkbookUtil.java index f48c05b1a..d564a0001 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/WorkbookUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/WorkbookUtil.java @@ -1,6 +1,6 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellRangeUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellRangeUtil.java index fd766a85d..82e3bc677 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellRangeUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellRangeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellReferenceUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellReferenceUtil.java index 033d3917f..fe65f81b9 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellReferenceUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellReferenceUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellUtil.java index e49d82fa9..5ae4a2e2d 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/CellUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/NullCell.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/NullCell.java index d2dbf00af..ba9db6269 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/NullCell.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/NullCell.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/CellEditor.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/CellEditor.java index 8f2468b41..2366a37f0 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/CellEditor.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/CellEditor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/NumericToIntEditor.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/NumericToIntEditor.java index 0ec9c2713..c4c5284a7 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/NumericToIntEditor.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/NumericToIntEditor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/TrimEditor.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/TrimEditor.java index f2ff294c2..1e56f4549 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/TrimEditor.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/TrimEditor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/package-info.java index 0ed3d8f05..fcbc48dca 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/editors/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/package-info.java index 7a19b4244..2cae5642c 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/BooleanCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/BooleanCellSetter.java index 68c7bbb57..43eaef717 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/BooleanCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/BooleanCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CalendarCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CalendarCellSetter.java index 4f532ae60..4344b82e3 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CalendarCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CalendarCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetter.java index faec22137..791a0e034 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetterFactory.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetterFactory.java index 48cd0a417..725e9f634 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetterFactory.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CellSetterFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CharSequenceCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CharSequenceCellSetter.java index 2ec7fb4f4..1e03b81d0 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CharSequenceCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/CharSequenceCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/DateCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/DateCellSetter.java index d08aedde7..0ef668168 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/DateCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/DateCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/EscapeStrCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/EscapeStrCellSetter.java index 3481fbb3d..b13d4d0ec 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/EscapeStrCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/EscapeStrCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/HyperlinkCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/HyperlinkCellSetter.java index 0c54ff3ae..1f64714aa 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/HyperlinkCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/HyperlinkCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/ImgCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/ImgCellSetter.java index 669181020..f78aa05e3 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/ImgCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/ImgCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NullCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NullCellSetter.java index 1e2590d9e..8a194d7ea 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NullCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NullCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NumberCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NumberCellSetter.java index 6dc23d168..d6ed421d2 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NumberCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/NumberCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/RichTextCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/RichTextCellSetter.java index 64498307f..fe5d78bcc 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/RichTextCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/RichTextCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/TemporalAccessorCellSetter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/TemporalAccessorCellSetter.java index 589425f8d..51bc3d1ca 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/TemporalAccessorCellSetter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/TemporalAccessorCellSetter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/package-info.java index 2440f118a..95374c906 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/setters/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CellValue.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CellValue.java index 352bd41e9..99032bed7 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CellValue.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CellValue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CompositeCellValue.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CompositeCellValue.java index e8c83de6a..4c967a615 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CompositeCellValue.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/CompositeCellValue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/ErrorCellValue.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/ErrorCellValue.java index 4f89f7727..ad98e2986 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/ErrorCellValue.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/ErrorCellValue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/FormulaCellValue.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/FormulaCellValue.java index 938601e35..64d1d6e12 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/FormulaCellValue.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/FormulaCellValue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/NumericCellValue.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/NumericCellValue.java index 05227e6b0..298235633 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/NumericCellValue.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/NumericCellValue.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/package-info.java index 54c8d459e..485b88bfb 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/cell/values/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/package-info.java index 42ae336e7..a520eaf55 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReadConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReadConfig.java index e0c6c20b1..715a80fd6 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReadConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReadConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReader.java index 6b6ae9aac..ddf7dba1e 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/ExcelReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/package-info.java index 4426f6bb9..53fd4f00b 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/AbstractSheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/AbstractSheetReader.java index 9cb92a3a9..7537eb1c2 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/AbstractSheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/AbstractSheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/BeanSheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/BeanSheetReader.java index b989ee733..91d9587b6 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/BeanSheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/BeanSheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ColumnSheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ColumnSheetReader.java index 358240a02..4bc246252 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ColumnSheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ColumnSheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ListSheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ListSheetReader.java index 6451827a6..15cc7ff5a 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ListSheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/ListSheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/MapSheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/MapSheetReader.java index a73648a91..8e54b03b2 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/MapSheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/MapSheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/SheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/SheetReader.java index d5207dfa0..6ec5b13df 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/SheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/SheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/WalkSheetReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/WalkSheetReader.java index 3b0a19c4c..bf79e6510 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/WalkSheetReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/WalkSheetReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/package-info.java index 3fc97753b..0640d66f6 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/reader/sheet/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/AttributeName.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/AttributeName.java index 7091fd9a7..ceba6f292 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/AttributeName.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/AttributeName.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/CellDataType.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/CellDataType.java index 80d0c90de..39d70022a 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/CellDataType.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/CellDataType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ElementName.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ElementName.java index 2795140e8..75f278ff5 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ElementName.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ElementName.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel03SaxReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel03SaxReader.java index 886616d44..d73bff12d 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel03SaxReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel03SaxReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel07SaxReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel07SaxReader.java index cbe93b7bd..392147491 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel07SaxReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/Excel07SaxReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxReader.java index f03bf7976..e5dba535f 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxUtil.java index a4accba3c..a22e7aaf5 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/ExcelSaxUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetDataSaxHandler.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetDataSaxHandler.java index 6517152a9..5bff441a0 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetDataSaxHandler.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetDataSaxHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetRidReader.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetRidReader.java index 090baa752..328939f99 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetRidReader.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/SheetRidReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/AbstractRowHandler.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/AbstractRowHandler.java index bd0d5aec1..7d2d48296 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/AbstractRowHandler.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/AbstractRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/BeanRowHandler.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/BeanRowHandler.java index d6002397b..43de3ffb6 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/BeanRowHandler.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/BeanRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/MapRowHandler.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/MapRowHandler.java index 7dec08d07..c74f85e4d 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/MapRowHandler.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/MapRowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/RowHandler.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/RowHandler.java index e9560d406..dc220c4b2 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/RowHandler.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/RowHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/package-info.java index 8080cfadf..68d9f7981 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/handler/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/package-info.java index 2ce23534a..63eb85e90 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/sax/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/Align.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/Align.java index d3b130ddf..9d0edcd2b 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/Align.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/Align.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/CellBorderStyle.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/CellBorderStyle.java index 3a8f5613c..c7605a4af 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/CellBorderStyle.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/CellBorderStyle.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/DefaultStyleSet.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/DefaultStyleSet.java index 23b5fba43..30703fd32 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/DefaultStyleSet.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/DefaultStyleSet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/LineStyle.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/LineStyle.java index a5b203c11..1189413b0 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/LineStyle.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/LineStyle.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/ShapeConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/ShapeConfig.java index b64b687d3..f4da71164 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/ShapeConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/ShapeConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleSet.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleSet.java index c560a33bf..4fef47af7 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleSet.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleSet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleUtil.java index 569bf1ab6..4c0aff239 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/StyleUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/package-info.java index 6021bcbee..22d57df19 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/style/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/BigExcelWriter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/BigExcelWriter.java index 69faadd6a..f215d5d5b 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/BigExcelWriter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/BigExcelWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/DataValidationUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/DataValidationUtil.java index 06defa2b8..bddd41ed6 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/DataValidationUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/DataValidationUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelDrawingUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelDrawingUtil.java index 79ed8d3db..2d15cc471 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelDrawingUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelDrawingUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriteConfig.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriteConfig.java index 67ad768ba..31fb3964a 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriteConfig.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriteConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriter.java index 4a818e67c..0f29c1839 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/ExcelWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/TemplateContext.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/TemplateContext.java index 33525342a..066d022cf 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/TemplateContext.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/TemplateContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/package-info.java index 067b80678..f6d1a923c 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/excel/writer/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/DocConverterUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/DocConverterUtil.java index 8a492e2d6..ae993382a 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/DocConverterUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/DocConverterUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/OfdWriter.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/OfdWriter.java index 9f0e3b4b5..853def44a 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/OfdWriter.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/OfdWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/package-info.java index 5e44b542b..68b279572 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/ofd/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/package-info.java index 0e7bae286..9997c820e 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/DocUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/DocUtil.java index d00171314..f77ba00a4 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/DocUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/DocUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/PictureTypeUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/PictureTypeUtil.java index ba7df074d..54401e36c 100755 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/PictureTypeUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/PictureTypeUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/TableUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/TableUtil.java index 0e5f0dff9..8ae545802 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/TableUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/TableUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/Word07Writer.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/Word07Writer.java index 9bf74739f..614edccd5 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/Word07Writer.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/Word07Writer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/WordUtil.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/WordUtil.java index 3ede4012d..9f01743c4 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/WordUtil.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/WordUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/package-info.java b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/package-info.java index d50ee48e5..1f7bed229 100644 --- a/hutool-poi/src/main/java/org/dromara/hutool/poi/word/package-info.java +++ b/hutool-poi/src/main/java/org/dromara/hutool/poi/word/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/AbsSetting.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/AbsSetting.java index d552afb45..bd5f8258d 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/AbsSetting.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/AbsSetting.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedMap.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedMap.java index 0ce02d783..95243a9de 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedMap.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedMap.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedSet.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedSet.java index 6fb672c6d..c947f0d74 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedSet.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/GroupedSet.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/Setting.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/Setting.java index 094ca13d1..fb5e3f21d 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/Setting.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/Setting.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingException.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingException.java index 9cd82a28d..837e84991 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingException.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingLoader.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingLoader.java index 330ca6fc8..1e26640ed 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingLoader.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingLoader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingUtil.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingUtil.java index 0101bfdb5..2e0bded00 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingUtil.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/SettingUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/package-info.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/package-info.java index bd0db6947..b77d8c6cf 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/package-info.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/GlobalProfile.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/GlobalProfile.java index fed5975be..f1857802b 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/GlobalProfile.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/GlobalProfile.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/Profile.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/Profile.java index 6d637ea42..4a54d4821 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/Profile.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/Profile.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/package-info.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/package-info.java index bd6c54583..815eeca39 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/package-info.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/profile/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/props/Props.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/props/Props.java index df4e99568..451114cac 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/props/Props.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/props/Props.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/props/PropsUtil.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/props/PropsUtil.java index 16a3738b9..9ab68433a 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/props/PropsUtil.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/props/PropsUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/props/package-info.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/props/package-info.java index 03840821b..21c18bf13 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/props/package-info.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/props/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/Toml.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/Toml.java index 811b3e563..bf629010a 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/Toml.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/Toml.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlReader.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlReader.java index d9be058b9..61d632891 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlReader.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlWriter.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlWriter.java index cd5e14841..6cf15b53d 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlWriter.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/TomlWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/package-info.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/package-info.java index 047864746..777e7db52 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/package-info.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/toml/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/YamlUtil.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/YamlUtil.java index 15c71e11b..d879c405d 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/YamlUtil.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/YamlUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/package-info.java b/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/package-info.java index 1b4026f6f..53c1268dd 100644 --- a/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/package-info.java +++ b/hutool-setting/src/main/java/org/dromara/hutool/setting/yaml/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/ChannelUtil.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/ChannelUtil.java index 83dd86d36..0513b3394 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/ChannelUtil.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/ChannelUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketConfig.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketConfig.java index 9d9a90c44..6d90723b5 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketConfig.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketRuntimeException.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketRuntimeException.java index 8de3e8baf..fd5f8c376 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketRuntimeException.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketRuntimeException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketUtil.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketUtil.java index 5fdf9fcc9..f0741c09c 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketUtil.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/SocketUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AcceptHandler.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AcceptHandler.java index 255b84479..82d489ab6 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AcceptHandler.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AcceptHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioClient.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioClient.java index 864184c74..5daea1f0e 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioClient.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioClient.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioServer.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioServer.java index d241c1a11..72a7e4f33 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioServer.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioServer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioSession.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioSession.java index cb4001511..1e9bd580d 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioSession.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/AioSession.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/IoAction.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/IoAction.java index 20951613e..25c6859e3 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/IoAction.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/IoAction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/ReadHandler.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/ReadHandler.java index afa382233..585e2962b 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/ReadHandler.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/ReadHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/SimpleIoAction.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/SimpleIoAction.java index 59ceb1a12..58a4abfc5 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/SimpleIoAction.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/SimpleIoAction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/package-info.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/package-info.java index d584923c9..cd96eb84c 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/package-info.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/aio/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/AcceptHandler.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/AcceptHandler.java index c5f76405c..1fdf8007c 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/AcceptHandler.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/AcceptHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelHandler.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelHandler.java index f83c89479..9c654d642 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelHandler.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelUtil.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelUtil.java index ac7e20c0c..185e611ec 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelUtil.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/ChannelUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioClient.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioClient.java index c3e1c133f..eed45e218 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioClient.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioClient.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioServer.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioServer.java index 04af88f94..6173479d5 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioServer.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/NioServer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/Operation.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/Operation.java index 3fdce81c1..441206307 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/Operation.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/Operation.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/package-info.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/package-info.java index f22945292..58db5c2f4 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/package-info.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/nio/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/package-info.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/package-info.java index 7fa0065b9..0df9ea991 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/package-info.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgDecoder.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgDecoder.java index ae7c1548f..471e16fcf 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgDecoder.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgEncoder.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgEncoder.java index f436d3710..468c16916 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgEncoder.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/MsgEncoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/Protocol.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/Protocol.java index e8285ea26..1318a10ca 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/Protocol.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/Protocol.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/package-info.java b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/package-info.java index 442610287..f4d4a4151 100644 --- a/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/package-info.java +++ b/hutool-socket/src/main/java/org/dromara/hutool/socket/protocol/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/DesktopUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/DesktopUtil.java index fde1395b1..1a5ed2c93 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/DesktopUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/DesktopUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/RobotUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/RobotUtil.java index fc0e55b95..ddb018411 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/RobotUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/RobotUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/ScreenUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/ScreenUtil.java index 3f10ec826..6444b9c59 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/ScreenUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/ScreenUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/AbstractCaptcha.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/AbstractCaptcha.java index a99e5009e..2b0e4fbb7 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/AbstractCaptcha.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/AbstractCaptcha.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CaptchaUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CaptchaUtil.java index 7b662452c..9e099c482 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CaptchaUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CaptchaUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CircleCaptcha.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CircleCaptcha.java index ef4c3455c..8a15d0491 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CircleCaptcha.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/CircleCaptcha.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/GifCaptcha.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/GifCaptcha.java index 477255739..0e23a6fc9 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/GifCaptcha.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/GifCaptcha.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ICaptcha.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ICaptcha.java index b57ce3a9d..5fdfd28bb 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ICaptcha.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ICaptcha.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/LineCaptcha.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/LineCaptcha.java index 732a563d1..5326a529b 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/LineCaptcha.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/LineCaptcha.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ShearCaptcha.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ShearCaptcha.java index 37c680c0f..529174d0d 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ShearCaptcha.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/ShearCaptcha.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/AbstractGenerator.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/AbstractGenerator.java index 65ad078cb..d24674151 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/AbstractGenerator.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/AbstractGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/CodeGenerator.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/CodeGenerator.java index dfb9c42af..3ed670334 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/CodeGenerator.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/CodeGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/MathGenerator.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/MathGenerator.java index fa055857f..b197d5694 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/MathGenerator.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/MathGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/RandomGenerator.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/RandomGenerator.java index 4913b525d..662f5a351 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/RandomGenerator.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/RandomGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/package-info.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/package-info.java index fe689b887..3123df66a 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/package-info.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/generator/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/package-info.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/package-info.java index c5b537bbf..c52270d8c 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/package-info.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/captcha/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardListener.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardListener.java index 9d729b0f1..12c6b0455 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardListener.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardListener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardMonitor.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardMonitor.java index 250038c33..019eb5d2b 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardMonitor.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardMonitor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardUtil.java index 83dfba9a0..66d9d893c 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ClipboardUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ImageSelection.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ImageSelection.java index 28260eefa..61ef05515 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ImageSelection.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/ImageSelection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/StrClipboardListener.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/StrClipboardListener.java index 30ba52576..aa7487a63 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/StrClipboardListener.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/StrClipboardListener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/package-info.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/package-info.java index 1b1170556..1bd22e75e 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/package-info.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/clipboard/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/BackgroundRemoval.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/BackgroundRemoval.java index 94ad695bf..a494883ea 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/BackgroundRemoval.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/BackgroundRemoval.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/DisplayText.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/DisplayText.java index a0ae4132a..6a4a43095 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/DisplayText.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/DisplayText.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/FontUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/FontUtil.java index 66e0ef428..5094dbbf2 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/FontUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/FontUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/GraphicsUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/GraphicsUtil.java index 4230a8b11..9cb074a21 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/GraphicsUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/GraphicsUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/Img.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/Img.java index 5aa0c21eb..97117158e 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/Img.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/Img.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgMetaUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgMetaUtil.java index 259f1cf68..61bd4ed58 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgMetaUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgMetaUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgUtil.java index 145e34ed2..29e54a3eb 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgWriter.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgWriter.java index cfe522bbc..fcfc93c66 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgWriter.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ImgWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/RenderingHintsBuilder.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/RenderingHintsBuilder.java index 8822e6a79..0b3e490a7 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/RenderingHintsBuilder.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/RenderingHintsBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ScaleType.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ScaleType.java index 11f216330..b7c32a738 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ScaleType.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/ScaleType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi4bitMapping.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi4bitMapping.java index adad5fad3..659d07f1b 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi4bitMapping.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi4bitMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi8bitMapping.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi8bitMapping.java index ec13575c7..52cf5f790 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi8bitMapping.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/Ansi8bitMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/AnsiLabMapping.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/AnsiLabMapping.java index 2b2db915a..719b1f056 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/AnsiLabMapping.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/AnsiLabMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/ColorUtil.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/ColorUtil.java index 1407e2c7a..8929b1c64 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/ColorUtil.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/ColorUtil.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/LabColor.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/LabColor.java index bf0685073..36c35a57a 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/LabColor.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/LabColor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/package-info.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/package-info.java index 61fc98919..79bc948e3 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/package-info.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/color/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/package-info.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/package-info.java index 98efa6561..88c03e24f 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/img/package-info.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/img/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/hutool-swing/src/main/java/org/dromara/hutool/swing/package-info.java b/hutool-swing/src/main/java/org/dromara/hutool/swing/package-info.java index 69051bc0e..5e98256fc 100644 --- a/hutool-swing/src/main/java/org/dromara/hutool/swing/package-info.java +++ b/hutool-swing/src/main/java/org/dromara/hutool/swing/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2024 Hutool Team. + * Copyright (c) 2013-2024 Hutool Team and hutool.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.