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 0000000000..196a7616e7 --- /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 0000000000..083dd58612 --- /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 c7ff20a28b..a5996e7299 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 196a7616e7..9bc942394b 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 0000000000..04bd294bbf --- /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 083dd58612..5d5bc42fc7 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 5bbb46b4dd..f9b9b2c1e2 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 032b3556cd..6cc5ff5f4b 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 ff44908199..d484026b3b 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 d1764be547..9c6ad7f315 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 6395f2d139..7b468a1277 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 b3afd8fedf..9edfeab399 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 588e48f37b..ccf63660b3 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 71e7b22dac..0bcce0d468 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 e8d5b205f8..4d99447625 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 1395486427..c1b8a9c21c 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 59a1778b45..e9a81fcde7 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 2006ec7f66..881cb3b63b 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 e2eff43d07..ef9dc06bdf 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 56fca126ab..c54f948f6f 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 42bff55cc9..8570b6f0bb 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 9b8f9b793f..4ac1633f4d 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 39be23afc5..3069d63d6c 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 975f312c53..a2264d9d77 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 95238be174..825c858597 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 824681ef2e..a3ebe50c9f 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 14334625d1..6b4bc03f9f 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 68205e7b6b..253a60184c 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 f6e537e222..6a7104dd9a 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 8fa65efbd8..a4acb7e066 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 3d38fd05e5..4c0a8f889e 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 4965897226..e853e78d00 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 7dde4305af..cf269a4997 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 4ba2ab8605..6675a0cb1f 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 3a95c8aaee..e507b51b3f 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 35be20218d..5ea520a2ea 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 55d3b3fccf..04bcb521c9 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 0c41358437..70ee81582e 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 4c71952b2a..30fc5f7c4d 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 de5fa2a6aa..ff6dfed081 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 125a972fb3..c4577a5db0 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 283e49f47d..465a2ed5c8 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 f845f9852d..83aae0a17b 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 dbd4c2b963..e90df6a376 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 38ecdcd88c..98abb90a96 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 98e48bbbcb..9f30a370c3 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 a5996e7299..d7f2571ff9 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 be851639eb..3eeba80b3a 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 35c4c4bbe2..b976fc4066 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 9e40ba9906..f686a36a42 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 972b286686..28c2a0d2af 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 b4f9d7b25a..2361cab6cc 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 bee0f12ce8..a8ee40463c 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 6f27336e02..3df8fc01ce 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 8fd94ab6e4..69800a2742 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 e83935c1e5..45c390dd82 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 06243300df..f91831d786 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 27c450309c..92ac306126 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 aee1e28945..2fb039ae1c 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 db3123edfc..574c049ef5 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 53452493c0..9f19537b4f 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 8b7d3ca646..7195990339 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 0580029f00..f87bd431b2 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 579f7df758..78e5660ab8 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 d642c58aeb..08500f1225 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 ea8fcd3fb5..f6b463f592 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 819660740a..18a9ce5d44 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 c19cafc701..73a2b298e2 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 9a516c706c..74ecd7aea3 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 177344f697..2de914c954 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 f6259d7f47..d6225d8e9d 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 5293d6c6d7..6412f79453 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 fc58b0a614..e874bed2c7 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 1cbfd54d4d..a78d40a13c 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 e35aab9792..6707a2da82 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 073b9692a7..935d7af98a 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 59e89bf0d6..05325f31e3 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 e3cff3dc46..64cc7bb174 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 d290f0aac5..487e919083 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 fcff50b01d..97099d7933 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 befb04938a..2000764bc9 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 afa63609ed..0061019053 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 eef7643557..25a789bc84 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 6d17ef7413..74fde715c3 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 dbff70fa5e..585c75362e 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 567c6c8f36..d968b99cf7 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 f850db0252..33b293a7a2 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 b9cfbe3982..2094ec263f 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 5045158b7c..105a04efc3 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 bf7e5c45b9..de25bbea9d 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 d3c5660d7d..67ef757f9c 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 75cf3099ed..4725a5183a 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 efa013af77..d02408d95e 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 82b8da61d4..f4bfce5a11 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 b15e5b01de..d6a2256c7f 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 aab81c26e3..e85ff47a37 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 3b0e6c811f..e03e5dafb1 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 745adb56fa..798fbfc8a6 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 222d8b9033..2d4cbb802d 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 3e5f439bd4..5a77b54148 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 a84402fe0e..9e7227df96 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 6c8875d257..9dbe3d5850 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 c7ded6ec83..78a2aadb0a 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 fad24ff898..0615882280 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 62a35f6e7b..da8fbccf29 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 1907fa3b54..dfc5ce6f8f 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 17a5581bb2..974371b723 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 b258cc5822..a8e55ad48d 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 7086002bef..466c236d39 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 5503d1ea44..6f61045b5f 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 f011b86cda..8078871633 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 4b85ed338b..aebf5014a9 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 0cad65315c..05bec6a8c9 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 61508a365e..77ec59b7d5 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 2534e1cc23..9457a3d676 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 ad43e23b09..f577bcf6f9 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 9973a79d4f..bf4331fbb9 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 48093edf41..d1afef036c 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 91dfc807d2..c4dd7132c4 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 d3427048dd..d41f2eab3b 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 f723efadd4..9bd4e75c04 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 05e9c13e64..622baa70d3 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 2edebb2245..985ec08397 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 48bc95ce62..f03219c655 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 daccac6d42..9e9fc6d176 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 418e5a40dc..c8082becdc 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 9045729324..2743d01b05 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 f4e6c6a031..7649d7ba1c 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 9318c4d9e4..13cc34e6f4 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 a3c65e133a..db5439cdde 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 a441779c14..70373740e0 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 6f5428efdf..fa39d8a301 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 a2c2167ebb..d2fc5fe575 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 162e06d995..dc35de1fbb 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 522e484795..82c3699489 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 b253682160..188d832259 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 c57aa4eb48..16e9f8ff28 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 1f8851a2fd..abefdaa2db 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 69e93242b6..d0ca67e443 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 949997d8b0..b527ff2c04 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 3a7b13b647..39fc4e5e2e 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 bd48bb3512..7d17b1caaf 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 08317e336c..c5ae168d31 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 32ea396779..4499d8765e 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 6e67bef936..b48d0aa95a 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 616bebe08e..c6e4d1593a 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 d30d043df9..da49779103 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 6ad7f82a6e..3dc6716a8c 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 f2873c1aac..088d2d8288 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 47742afb08..eaecfd24af 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 491b8bc03c..5c3edc213f 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 d326249611..801eaf4fa7 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 2202a4b99e..b9987c9d25 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 bd365caa52..0bc2e8dfcc 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 32395fb0ec..fafc8d14f9 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 5be5713250..fcc187ca3a 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 ed2b06b1cb..375ecaa50e 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 fb6c5e7165..b066c66733 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 2540fa4f4d..6e4d44180e 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 91a8f9c276..cc7f19b188 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 69bf036daa..3ba9cecfda 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 e0af70e317..be1ad3b8d6 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 c1a30f1fc7..b53456b795 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 1da154da16..f9d38c6521 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 f51e80d7e4..e446bd12b2 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 d207d4cb7c..dd9bb31e48 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 97a139bb1f..4a8dbf91f1 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 d143cc7ea0..83633d55da 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 823037292f..eb57f8ec00 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 fdf00425d4..0b7890edcc 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 bd5f71a84c..eb77b93d4f 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 a5edaa44c9..d7af6ab15b 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 39bf956de7..4d0c93c7f4 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 8b9e2dba02..8048b3cd07 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 5376606ebe..c12093578e 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 c5bd06b07c..0f6ae57ec5 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 1ba91442e1..f474886d53 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 0433e07e50..37ad2fe5e5 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 1bfbc6b7e2..3ddcfeffa3 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 f1a8a7b292..7329aa4f4c 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 b03642bcd7..a887310864 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 14ac61e803..0f35450d4d 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 9335d8deac..0f149a108f 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 cdcc31301c..9c35325668 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 ca3ad9ad1e..d8ec398d3a 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 b1951ead97..7278e8d8b6 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 dacff933ee..cdcf549341 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 0d1ea9f492..edd9cba143 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 aac9e8fadb..f6b527cb38 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 648f88235c..83265d9ea2 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 d3cdbe823e..9cda08909e 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 595cf078cb..c1756e4ad0 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 36750ebbce..785e24405a 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 486cde9ab4..2ebe054849 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 c069b7bec4..38da360f22 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 609176aea5..2ea8a6565a 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 4e866bdaf9..b39853995e 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 4c4a1abfa1..55c44bdd5c 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 529e05f0d5..0eee88728d 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 6884a1d700..e0cdf84cf2 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 1876e3c718..1531270c30 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 9fe5dcd9a2..f523254d50 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 07d0542096..f119071625 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 877b29f779..231800ff84 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 1456e8f49f..e9de4b1f35 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 c8c88b797b..c7012021f2 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 3d57f0cfeb..017993c591 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 5ffd284ee4..2803f40e88 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 48633270a6..20f18d3022 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 85e2c30554..1c55deb8d9 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 078e18aff0..a57fe5a2fa 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 af74fc29f7..f71fd18467 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 2fa2d98c6f..6126b71e3c 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 9cf6dcda4c..704e0a3a34 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 e8eb465ea9..37e605b0a4 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 f5db2567b0..15d3510581 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 6fa043e58d..81f645e919 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 53d8bbe316..fadcc5495d 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 b8346f0af9..8ebc5fea21 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 7401444a3f..7c60de9e82 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 2b7dd84c12..23afdd2022 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 f9d9e1f99b..901aca99b4 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 a4af2dd583..4a588793a6 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 cb57ebd84b..63e3865d70 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 45dfcd1987..d85f696808 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 54f5242a3d..4d08e6b23d 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 630d127565..2735d46b4f 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 06d4ace113..f0405102ee 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 d9c5ee8931..5a8b58ed54 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 35a4ce4c9f..61ef87a1ca 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 301490323e..fe9c24a367 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 897ca990d9..64bad6a1fe 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 7fc4f96f9e..ace4f10b61 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 8f3ad26577..9a83651e99 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 3e5ab85d0f..1c303fd87f 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 5df627a570..9df63b84a3 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 16d15b615a..59ab7ebb25 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 938a335a80..fdac456e4a 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 f296fc8423..d653c365be 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 cb3da1b95b..ad494b7ede 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 69509509f0..17062c3ee0 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 0b0feb36f6..91b3747a88 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 a92a041238..200f261c73 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 8e01b7db79..c76419a0e4 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 9cc368e23d..2e3dd483fe 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 1c8021ef7a..d1b0d4c422 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 e3a7d6755d..025835ed21 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 7bd7511db5..fceaa8e6c2 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 e4cae97241..0adf7f85cc 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 9a39999260..0df2c5b870 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 25923f2769..ef82a0c3bd 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 7b8c5a0018..d9332a274a 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 dfed011934..4e212384ba 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 1a7342e645..7a557e8c80 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 6f3a218ebe..19391f96f6 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 faa04c611b..85a935d746 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 90471af3be..895fb8ec12 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 84a6ba1925..8f2a7b31c8 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 46865cddc6..710ff346f5 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 649a9a9b72..ff8b439926 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 217926aa74..dcc3fd5178 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 8940f077a1..8d6e39a2cd 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 c23c77299b..372227d375 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 3d766fe8b3..abd2360885 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 4d58c7f0d6..e68ffabcc9 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 559eabce28..0d053408d5 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 2a4e629848..2de563f83c 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 c8b800bea4..b32331696e 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 92e11a492a..9d275051be 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 80ff26d7d6..41a934751d 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 9496e84bf7..4e278ad5e2 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 3121508f88..7f47c59e9f 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 708036fa5f..642053e879 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 9311682cb8..5bb76fcfa2 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 963129451c..b80037fa44 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 04b2ea5783..c8a78d7265 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 4ce9e0d366..a964e6bafb 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 c3b58f5a75..2c3fa1c4fa 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 f8c617242d..29210f3da8 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 a9abb83a1c..2272430e52 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 212e766ce6..e5f052704d 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 9c4d7d2cf8..db03b651a1 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 18c109672c..aa000888b4 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 c5633c425e..7dc6f64708 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 7d6e85c85d..7735378a93 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 e44e3b8824..a8625c467f 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 880e0b9855..aabb56f76f 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 3509c7270c..78c745a1bc 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 0583604d87..9637acc20b 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 4f969f9e8e..debb6e4b30 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 e5091ccf50..707827c692 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 fc173743ee..59441027e5 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 8d5cd53586..94cdc42550 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 ced76edf14..3994326bb5 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 bd86d36d18..7f6e6c3bcf 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 3fb9d51dfe..f3cca0375a 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 2e0d1c2c69..c585c55b07 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 6a96e8c4e7..8d65348b18 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 5059767260..53b94efd0a 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 582626a5d1..a37c20a9db 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 56f3c7821b..5df4cf1530 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 5cda916f2c..dd570c1a5f 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 1f241ba2ee..8ad3c56b4d 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 67974f170a..025afe5043 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 15fe248373..958def3141 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 8ef8f18cd6..0cfc1bb61e 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 32f72416ed..e82cb2f474 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 f4ccdb8ef2..bbd5c2c279 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 2311cb4839..3055dd1de8 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 ba0faa3c84..53cb9a89f2 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 fa4027ba9b..90300e0adf 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 35a041f13f..5d39c82e3e 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 28bde4b9d0..1ca51abeb0 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 684ca7d8a0..621400aa62 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 5219591510..1064aa2786 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 c39426da9b..7661cd0061 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 a067a6819e..d5fe6a1770 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 15e8cc7cab..b8874ff32c 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 9584cd9ec1..791b438d90 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 1d7fb29841..64e95f7b0f 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 f106f1378b..c4f1337423 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 dfc1625a4e..6bcc2bd614 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 e989106f9c..c5aa82695e 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 61d84afd32..ce0ffe2339 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 04057554a1..79376a5d0d 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 25540b4c1f..044107bac7 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 1fd3a04759..47dff225ce 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 ea9c737ae3..9c8a7adc3a 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 e4297498c6..114bb264d3 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 fadef090ec..0e9c3de0ee 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 777ea3fd2c..84fba8f2d9 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 b22c6d1dc9..a5c2d3dc06 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 5605aafa6c..f438051549 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 07b1cf2d56..cee573b050 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 e78f56e59d..ee3536b9d2 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 74ea8db197..4d5091da7e 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 3142b0c700..b27f32d40f 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 98a77c71bc..5740994ea0 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 418d8144e9..d20d737aa4 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 c3442bb264..1b90b1f9f5 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 108eb88c31..9191ee3e49 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 79b0f47794..fc1fb21c53 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 8d1e0d8cca..438b493a14 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 eb334aaa8f..71421b500c 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 7e8c239917..968a487397 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 c63d6937dd..d343b788ce 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 042670d656..7adfd5fd78 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 9c01043f94..4941cfe457 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 f7f11a0a5f..b4f663eb87 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 d0e80298b0..4ae2853f96 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 8ecc6d56ee..5723fbb831 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 ad8bf1f10e..c80cb2b5bc 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 888dd68eba..82f9f9be25 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 0b14e9b220..3cb71da805 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 b02ca1ff12..bc5ec9bf73 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 ab9d05aefc..20d25d8575 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 37e2bd0967..7fa7ced9c0 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 f1d97e4242..b34f4be05e 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 b24cf9d87b..5ba846a1fe 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 f5542fc2c5..01098ccea9 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 9c83a327cb..7fe4562580 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 a4a2109d56..a80c2894fd 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 fd9299d970..6a134add1e 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 b8ed9c42fa..ee8e18db3a 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 40ec21352a..547c21344f 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 a7e1551cca..f8259eed49 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 29f858630c..b6ad3b4aa3 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 620e2e98d6..6264f2cb36 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 c4e7e6b682..c281b0bc64 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 2698417822..0a64eff87d 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 fb9d1a6815..19f20ae0d0 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 bb3d24db1d..57b3df033d 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 c858adce28..e5180aef03 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 974f9937d1..e48365afd5 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 a85c16dab0..b8dfee7a97 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 62b0a5e568..99762d4443 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 8b9cd21694..37f2dded1c 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 dab77c7604..c794fc4259 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 af75f7dc45..fac196be8f 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 ad5387b011..f056832de0 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 b3204a9ec3..dcbf661d9f 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 0e2fa19083..5c5161b258 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 b63750f2f0..099240cc18 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 abc19609dd..b51c7a5e12 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 c9ae9395e2..981a27774a 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 875119fd78..da7443e6d2 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 ce14f60411..a8491fb728 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 8d85b8d8bc..a5764db9c7 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 766abddf5b..6e5fca5efb 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 1f2a9adf06..d548d65bff 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 8e71567fd0..87517a6baa 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 ef00ddde68..037c4fdac0 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 fc5befb77a..7196fec85b 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 fa0fef7fa9..bffec65b1d 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 ef6eb2ac1b..5bca434430 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 d4ace217d7..ea4533762c 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 c5fcf40812..335d8d8907 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 fb954cf0bf..91deac59bc 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 7256e73a76..7d569da825 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 dc360424a1..43d1faed23 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 b90b538828..c1f0afa678 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 6b7088a446..b438947374 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 6034b5ca6f..c04653f6a1 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 75e7238dfe..c9150804db 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 0d5a5e4797..337fcd1b3b 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 84c5fa804d..12d891afbe 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 c47b37e8f6..a7c7d286e5 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 aab59b11db..2c84f48202 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 dd55afa5da..0a26380b3b 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 fb68975ebe..b0385077dd 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 77fe80b533..685c68eaf4 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 4e8839e630..e91d6dead3 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 101049262e..0dc1609e10 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 6cba3879d8..6e2ebe14f9 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 00474d2b5a..c8ef37b506 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 05de78b530..fcd2776356 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 31de8b45ee..2006f18e7e 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 7166375d0b..9f4b7d8084 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 b38cbc7bdf..f2e92f587d 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 1d448c9d04..fadf7bfda3 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 3582505479..514116b2b0 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 1cdaea47be..ffb97b45c4 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 73cdc8c942..36265c6466 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 fd8befa844..69ee803c9c 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 a754876d55..abeddfdf68 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 865bc2b5bf..bd514f63bc 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 45fe6ff7fc..7bc85ce217 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 00d89f4491..351567228f 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 e11ce4f21a..de7ae077d7 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 3dfb6b158b..5ce0dd57d4 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 7aa5a9e1fd..6c4d76146f 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 1016c7e9aa..c0a53cc5a2 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 29045dc4f8..7b3a8dde01 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 2f41b710d5..ad3c97846a 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 e99eb2cfd4..c4cbe05e14 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 4ca43de51a..cbdaef8673 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 175cd6680a..db5d7493bb 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 074bfea5de..42df7b7c93 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 60f09d1811..95cb278ee4 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 888d9aa728..e222ad7a46 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 11a5aaab6e..09af171786 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 eb1ef8caa5..614e7a7f60 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 2e47877b83..56ef8a98e3 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 57c0dc736a..f1413cfdbd 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 86b1d5904f..7fb40173cb 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 c5c995bfb7..38c70eeec5 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 e536ed64a6..e32058cd84 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 51de3943b3..cf27bf7669 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 8a5db03f6c..426d021965 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 201a478356..46f2a8cd28 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 c6e4f5e740..9e29026c00 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 1810507afd..741923f0df 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 b1d398ddf2..d69f3f1ab0 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 850c35a5c1..bb99cb2e9d 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 0881b35a7a..e153ed876b 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 c0294e6138..c0ce7117a7 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 ab8cee0ad0..33be1dd57e 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 7709f9aa67..81dd8577aa 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 18a0f78433..67d856978a 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 1791576cc1..d60dd81a87 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 1db5e690c2..b223c64c1e 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 caea752871..1e02ae1f6d 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 f2b841cb16..60b880fb5c 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 bbf782f9bb..1399dba443 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 b422844d92..a4eb306bde 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 b45e69e9f8..42d588e1cb 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 a61761e830..fc536c3009 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 fc0ae51d1f..4666e2798f 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 0a2ad95a36..0550e26adc 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 49f4b31b11..0db274c0a9 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 8715bd962a..404090c2bb 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 f99af16b99..736d54ff23 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 2c2c181361..02d3e4323e 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 a03f87396e..fe3c9e3b6e 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 9a3f91935d..fa2e77702d 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 fe437ba772..7ef89333c7 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 464a2f19fa..ffc2df3069 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 2499b1bd1d..694188cb93 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 14de95cd9a..21ff50011a 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 682f76044a..e0aba8efc3 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 ecce140793..27f4dd3513 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 97ca267c94..941a39f9ce 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 da072f0251..79e6dab7b6 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 45b3125fb9..1ed2f68329 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 6535594f4b..67b4aa5ad3 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 9e4e7d2130..4fe04c3177 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 d5d4da388f..e35120ae54 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 87b801bf59..3fe39b0e5a 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 99aced96a1..9edc66a09d 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 abf1cfc66a..b7ee2c5b55 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 7dfa232924..8c318edc3e 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 2df44b2c2b..09aebdc214 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 a7e2ac4f1c..14653d6775 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 00f1d16919..95c998220e 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 7b2c73ffda..9f84843305 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 fc36ca0b7a..778567411f 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 dcaeb3f9a5..880fee7c43 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 149cbe9d1f..11ff334221 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 0031bfa973..af45026595 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 270322f26a..acf0e314b2 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 6571939535..1c5bcbd61b 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 2089e66ef8..45f38a2f0b 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 dcfa5eabac..7d0d871f43 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 b6e7c00940..b6bec1d747 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 63ef5f1fcd..173aa31be7 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 2f796e9e1c..1a89884101 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 e0e8730c6a..dea3088872 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 528d17b607..7e8f85a8b4 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 e828bde8ca..6c3161829d 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 7e0e7d65de..07557d7578 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 421c311f6c..419b7c27d3 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 bec035d601..b95845f6ab 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 c627b4ac72..8565d29027 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 aae3524312..c500f91a13 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 ec7bfabf0f..244f8f9322 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 050a8128cf..2e666ff86b 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 653491aff4..0bf595c84a 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 dea221fa88..58c900c9bc 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 6e9a7f8dd1..154c32ab17 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 162a8c7727..5e975940bd 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 dd450c91d0..9d6890cf63 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 2be125db55..e0611e0c8d 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 f119d5bef0..8c2282acef 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 d906cc281d..900d52bcbd 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 bee6892307..6ab96c563c 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 fb7d7fa8e9..7afdc6fe0c 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 a7c929cf38..8930a27e94 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 4621737ad4..1f8ccf0cdf 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 010fee43d6..d11b83bc8f 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 714848593e..14f8476609 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 dca121aab0..8144eed20a 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 a888f8588e..e0f8cf2603 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 83763c51f8..73ddac4947 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 7dda3bdf37..645ca1c9fe 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 edf9efa8be..dc31f1cb2a 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 68bc51c061..c997109751 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 34b0676661..3cc7f5401e 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 844577141c..d52f7b4423 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 3b568838a0..976207033f 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 8ea20d94d2..32fcb1b54b 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 a0168be7fc..3f970347a9 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 775feb4500..7d7e751a8d 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 180d4a6f57..5d5b796f44 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 858cb55c6d..596103c48e 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 17b4130e68..3382cbed93 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 bb328c23f9..cfa64c0893 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 ba9e5f0093..30a83c516a 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 ba85580d8a..4a545e1ef8 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 162bde978b..1e13716bf5 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 9995d7c6ca..c5da65f821 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 fa3762a5c2..1f3e290377 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 0820e66594..d1ee17e498 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 094a71404b..f589b3467d 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 a7fe24c44d..cba46b1e41 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 49a090eb86..3a6e40cd19 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 c8f502f2dd..f98618eab0 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 5a86b0d7c3..96aa33d807 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 3744c89099..84ad9afdae 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 e07bca6450..0e5b523c5f 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 43c1247330..aa35bdc0bc 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 344bd9b7ba..5f5bc696b9 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 3893c7c584..d2ad128d49 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 4f6dbe463d..c0816ab84e 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 d50629400a..a8c6c19762 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 518cd06842..3d2d95350e 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 920414f5cc..8881360116 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 3c6a27ccb4..d58b2b1d73 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 4fbec9cfe7..e22cc10d38 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 0f15690d3e..f02e29bf56 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 05fd525d0f..5d2dccd60a 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 631938123d..5e26038aa2 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 ac9a90e96d..baafdd3f9d 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 18c672f04f..c09f6c45ab 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 777444da5e..a21cefa52c 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 dfe30b5310..cd1bf6c2aa 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 c1fd97300a..9d4bb5d9b5 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 a9902d0529..0de425e72c 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 eedc9b0ed2..e829b337bd 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 2b784f4c9c..c8e3d10cac 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 14be76d385..7bef9668f5 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 6fc48981ca..efe49b9e07 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 5406419a10..16d6bc76d6 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 68be215561..03af1158b1 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 f9f0c7407d..133b854aea 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 33bdaf1535..58aa3e52aa 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 14056e7589..b2b58ab04f 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 fe62ad9411..e9511fe7c9 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 f65f0af500..5aaf8c6b65 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 4a9d556efd..848bf6a668 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 32bd4eea0f..24792954da 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 af7f60b09d..dc667e24c3 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 7b31ec7656..49be42e3cc 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 27bda08adb..cc4a2ca10d 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 a4cccdbc24..7540e2bc2a 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 e6c5acd6a8..58b03b264a 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 3de6796d30..bd96d8e0ac 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 36d852a34e..c871fc9a0c 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 aa1137b9f2..95f77049c2 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 9ece4df632..f540985a41 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 b217cd0516..2f78959e02 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 29287f5b70..31fa9a6a9a 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 bd0377ada1..7044336221 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 8215ecb9ca..3696f561b0 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 179a7e0ebb..958aa746fb 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 5138ab1121..0af07277f8 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 9bc942394b..fb7443601c 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 971de44f2f..62891868c2 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 9e642ceda7..47be04b5c4 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 197802f0ed..b892ec362f 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 747ce26ac4..593ed6d827 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 af9e24ee25..6e568ba3e6 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 cb496d6f97..45563a58f6 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 442926b2bf..1561dc545b 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 08aa6b312a..369d9cd291 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 62a1ba8b93..f9e55d5377 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 3c26d6d1c5..412aba445a 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 3157a2ae78..ce3fe62b71 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 00ac4941bf..e490842a7d 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 722275418a..4a697e8ed8 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 90d833b268..00a88faa07 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 5e9b40e9bb..7fcc179eda 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 d1d10deba5..d1d8ef476a 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 d57e9a6360..4d7475c11d 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 801944825c..df14978efb 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 e874511a84..e86ff2872c 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 8332c9c259..bf427e2020 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 b83ce6ea51..7038d8ae7b 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 b3606b3111..5a614f8806 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 9edc6ac3ad..1540c2fc2f 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 971fbc2f22..3e126f986d 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 fa62460bd4..6990b4d40f 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 ed62197903..45bbe6baef 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 4dff5c074f..1f26d50a0b 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 7bff9a192c..04ebc7b5fb 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 2f86039d75..9d8d950256 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 e7ce04a66d..4dc3ff1441 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 b1e5e40be5..8b36936f14 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 ceec0cf3a0..d7d60bb767 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 446ab916de..ce6a5514aa 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 24949f9f39..6412bd267f 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 7f7574edac..aff6d829d0 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 a24ec80cde..3a6c16b01b 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 7c9a057e09..8f50533a73 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 7065971ea2..f45edeb517 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 2a1de812d6..cca36452f7 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 6a7a54472b..e77acfe74b 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 1f1017cdcc..218e4b92a6 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 df65ea4cc2..bcf072067b 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 702b25a09b..89e3a58a0c 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 258426219c..16e77d23fc 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 0486408e12..739860dc3a 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 0a3989b92c..391377def3 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 b5c053a8fa..3a037115ea 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 28f8b933a1..48e7a2d3aa 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 190b10ca8f..d1d4500850 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 3b50385f24..defecf9239 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 209816683f..d303391c7c 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 b127dd1e72..c20bbf5163 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 76721f0cd5..face68be63 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 1f8bcae989..09f5f02d35 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 97158ec6d1..5531bd719a 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 a7f020f4c2..0a28b1ae90 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 23bae081ac..5e2bd37039 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 dde5b710bb..812358c8ec 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 797669c940..e2f017120a 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 b2d08d7cd4..2ffa6b90e4 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 6c7c732681..61fd793148 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 d80282dcca..4a79ac09c9 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 4585c0b623..cf55b55b9b 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 f7db5f8107..c98e5676e1 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 95658450a0..ea58366324 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 2285dc9c9b..f0bed00b96 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 00e759ea97..95395e8a50 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 1aa32737d8..75abdeb0a0 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 8588b40d59..4caa95beff 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 b913b156ae..e90e0c5bb7 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 3dd21a290c..91f0f4f980 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 bfafb9ed3d..67dd657814 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 c15df96b3d..02fd719ffb 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 55bd82e9b4..f64738a442 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 9dd5ac6360..7c38146991 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 a2eba29d99..9e82047bfe 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 557edd626e..f8a71fdd76 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 e9b0ff174a..796643d1c7 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 33e6ec58cd..0169298d64 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 f416e3206a..0a365d4edb 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 b38d2e1119..e723692d68 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 a8982760b4..af0c87d192 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 866cebf805..6555dfa3cd 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 263ee4e6f7..ab66953ea0 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 83435da373..41d76540f9 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 6694f90e6d..21a921a0de 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 9a79ffd055..17e487aee6 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 d490193e47..65535961af 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 1eeb8ba3ff..b1394e4dc7 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 476eff47f9..cecc047fd6 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 3d68d54836..dbbf5507aa 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 e0e292ae7c..dc82802513 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 b31c7462a5..b10d98fb77 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 cdf3122527..1602201594 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 1cb8e9028c..c861d045cd 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 c5e3a7b6d2..82295e46f4 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 3c8daeafb4..3ce9276d16 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 070ea34ae2..a81dca3b49 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 aaa767416e..1180b8b4c7 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 420f114b1b..06a9390d51 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 896e5c8c85..3333888735 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 10ed9adc8d..5aec913549 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 4e3eff46d2..82c37ca789 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 7e8972a1fc..da2e4dacd6 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 b844cc2e69..aea0faa254 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 784196f92b..f133b51d5e 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 f4e4e86e1e..8df36673d9 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 9e50241dc7..9eab7e89ff 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 e2c4ca6843..1f5c73f98b 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 ba34d41675..807d3edde2 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 86d47074d7..ab2d12df0b 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 57e4eafc06..ce84306d9f 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 4b5141f996..3700913bb9 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 b812fee216..07f72ed8c4 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 4acc6884e2..060c6e615f 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 6794b3e2ce..131c299389 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 2d8546cf6e..73acd04079 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 2c8886f2f2..1eaf4f28bd 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 49d5c11d7b..4d099b443c 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 2b0b0b092a..d3f5ee9363 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 bf18ae4839..9d7622ab22 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 23614bc02f..56ccd2372b 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 1c43c24270..9ab7b4329d 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 b2710e4d8e..a0ab002a82 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 e90a9e9e7f..2321baefa2 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 1285b9bab4..53e170bea2 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 4dd233c4be..5bb90c95fc 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 5c10e6e75d..68958240f6 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 396673c61a..b5796ed56c 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 e244eac548..24352ff156 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 d827b3ee3f..d59c2fc9db 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 042d8901d1..7ef9059625 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 f8276c18a2..8924a5b704 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 6b22718cae..856f3e2a17 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 34c7f90627..e40c27111d 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 f4b4e3c886..449c405bbd 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 e211129d8d..af633910e1 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 25df8984dd..9b7740dc7d 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 619df4950e..838f85b797 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 709a486289..5aae9c5880 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 b25cd84311..92df91e8dd 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 3424748227..1dd389f0f2 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 d7e0cf818d..19b82d7038 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 777e85f2f2..5097dba77a 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 c9b98d95e9..71e0d73391 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 0ac8085ccf..9d081a5a43 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 42d80f0f34..22bef7cb0d 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 375d534bfa..741b907f18 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 87c57b7ac1..320e070eb5 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 82906e0039..0850347d85 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 b587cd3c50..e0a54dc0ec 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 0906afcaf8..ee40b9b4d4 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 f94f11e25a..aa2605183c 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 6b245325ed..003cad0f76 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 3c4969868f..ae87ce5eb9 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 78be3ba6e9..b4e59dee51 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 97c56b0a4a..8db081e56c 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 56c15a3273..47fb7246a6 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 daa2b14ce1..6251a88545 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 3200346a24..c130042f18 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 ed6fba113d..9003cf1236 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 a8e6eb3421..ef07c1acac 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 0e0ad4933b..91769165ef 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 53053a3056..e3ca6d8b8a 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 4c6d75cb09..f20698d9ac 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 c258f3a524..dbba299031 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 4cc82581b9..58986b5a8c 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 5eb13bc448..700e73cb13 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 fcb835d640..f76cda7f8f 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 39d3added4..d2053f69f4 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 fde4b11d54..485b7c4654 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 33cb14d113..f152124558 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 1cb0911985..3ce1a0ae85 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 48a1bf7370..7855d59377 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 054eb77b59..277d991fe1 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 036db3f590..2c547f62e2 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 932288d869..965fc8de69 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 161b4e0cd0..fa9f88e7a7 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 5ef8852440..9390751cbd 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 b56853d57a..fa727bcc5c 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 5b6497bfe7..3711affe64 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 3a2821a03d..1982a671e3 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 af503e0a79..8d4f37a423 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 22d391f9ed..4cd68b2933 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 0d2ed7dbf6..3266baab44 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 7cef6d7739..54d1579c60 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 da3344737a..cfdabca75f 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 8881479721..bc4be36135 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 e027a5bc4b..39206acb8d 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 ec53da12b8..29b2c99d27 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 6909f19515..de14351604 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 4d2146baf9..6402c5b738 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 d3775c60cd..d68eae2024 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 10d92a3494..41b9ffa3da 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 0c990d3a27..c5b4827f28 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 99406ce7c7..1ad739cb64 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 affaa29e32..883dcd4f49 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 1769ee2ec1..857c881d99 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 8a73b175c3..17fa1b5df9 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 a8c2de6f5d..aff16bfb00 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 4605f9b718..e0aff66978 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 5ee68e73cc..97b7f6f1fb 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 75a0634350..c83363e22b 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 f614f6cc46..92440ed076 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 6fb99b7c4d..0d95a2a0ea 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 0b9404825e..60d3ce0ce3 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 52fab669bf..4588f6b80a 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 bbe6ed6386..1976961dc1 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 c1fe5c4a0b..c04b0892aa 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 9cc2b71588..7ed2f151f1 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 90248dda8a..2ac4409ae5 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 3647657103..ff1c657f10 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 f0fd995cd5..0b728db9f7 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 582b46923e..de34b80004 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 1e21e1494c..6fb5e0ffe5 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 8c74d5e5c0..1434ba2801 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 6abe64ef72..45ca73ffe1 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 10e6c0e4b4..c168c6a90e 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 232fadda55..9bb5ee14d8 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 619b574856..fc88a25542 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 5105cb39a2..88d5f4e441 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 8060675cee..37b9d2313e 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 aa4e96c3fc..21bc7e6101 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 1d356d8c7a..bd0b840e53 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 67a6d02e33..82b4591fcb 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 ffdcc200ba..07b26fb6c4 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 7071438749..2e068e0ec6 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 834307c347..d21c8dfb55 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 4a1bf5851b..32f4a8ce94 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 5f699c7255..9508a7048c 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 e8bc5bbd14..791ce8c103 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 7c227b0075..5f0ebcb9b0 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 00f96c876e..7a0bcddb62 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 b970b3918f..4fd388c8b8 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 98cb2d870a..1bfbeff77f 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 ba3abf2eb3..64de1d275d 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 ccb75b0add..9045fa1d7f 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 bbf626d8b9..4095141044 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 52e69c5268..5ba4d5bcd2 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 a7a584c678..21172d815c 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 ba53d0e14c..51e7c04c95 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 84eb8d96e8..600a6e4c23 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 e8a1900cba..ad462e73ac 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 400b5d7292..10f6ee03f2 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 129f1846ca..27d57a068e 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 dfe60a3421..6aff61b315 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 10a34f48db..ff9922b1b8 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 eee16cfeb1..681c3308f0 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 798b8b8134..52b573b63f 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 49233ce182..744915e595 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 ca721da4c6..523a92a9d7 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 b96b6b4348..cb3d3081d1 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 235a925436..7437b343e7 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 ce63adafc5..25ee3f6065 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 155aebabac..3ee0e90e0c 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 46f8bee6de..b14ab1c08b 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 d8c6026256..85d12f93b2 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 6b6b801851..00c1277d91 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 66fbd3435c..71327fbff8 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 f4750ef50f..26dfe159cb 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 ae4efb1b33..439a199f38 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 d34a19e7c8..aad575faa8 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 3e8bacec98..11a1e9bd9f 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 ab9abafd7e..4fa306cf37 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 660b6ec972..47f7880970 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 80eb8a74aa..d2599b4319 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 e1f96828b1..a6b6d58f95 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 a800301e28..ab50402308 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 a9f300907b..df7edf7247 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 715339eef0..3b8951385d 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 a69d44dec4..b21ba967c4 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 b7b76e0840..cd412a6e74 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 23badd315b..1fc36ab5d7 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 e1d9ed15cc..9b87e9b3be 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 5268db8ac1..2a1b80eed4 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 f2f3ec9ce5..7578b0850c 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 957795e774..a3840aeba9 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 ec2da7badd..ac7a0f5c01 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 c35133c20c..5ce08a71d5 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 e95f3ed80b..c27476a1cc 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 642d49aa0b..6d184f15b4 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 a40ffd165e..05737533c6 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 37f47668d3..dd0346644b 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 acc41133bd..a64fb4a8b1 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 8bf7dc2db6..e2672278df 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 9bf3584733..b20bb5edf6 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 2e32c6daee..4b84fd65e8 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 e1b5f2cba1..de0cd48715 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 ca4566adf0..182186e416 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 6fe01468ab..4d5faf1fb1 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 7165785105..bd99bfda2b 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 45c17d17bf..df2979d804 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 6916668306..ab90bee24b 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 90e01cb6d6..df43e840a5 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 f7500f38f3..0e10633925 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 6170cfe7b4..f480cb6fd3 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 75d4fc280f..d562217267 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 edc93506b0..0c031d86fe 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 cb0da6b63b..b1bb7d8494 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 3fb0990439..113a9c3ee7 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 a04fb8cb2a..d7487454c8 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 e8fc6ea87c..7d9671a721 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 7eac587733..8a43f852ba 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 dd94463f11..0a15cb1a35 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 a194736d35..be224e3f65 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 a2d43e5c71..5d764042ef 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 7be9e58dd2..e72de599d0 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 9adf772b7c..bd173485f0 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 b9fbb5682c..ef65741742 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 8477642e6c..6385783664 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 f9f4d2baab..52c956409d 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 70032a3de1..f485698965 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 533284c318..4c3a0fbdb9 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 80e7a89876..236e1a1efa 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 ae9d0c62e7..a4ca5a4563 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 04af0c5e33..66db9837d7 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 11ec1f07dd..9106fc3d63 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 c855cd1dd9..96f2e0c2b2 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 b903aac43b..57994c646b 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 14b128660c..078e2b844d 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 9e3706b3dd..a999a75157 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 1ce1514da0..21bcfae744 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 6c10896b60..1e376c4dcb 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 7e46ec524f..f28ccc4389 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 9e5fa28f49..e910446c60 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 473a9c0eac..b692ce03d4 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 1ac4af1238..9c5f5ee4ab 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 4e3636874c..82a721d2bb 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 396161dc7c..0ec04a0314 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 e9a03a0f30..cf90876b58 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 1e0ff3dd08..d7761615cb 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 5a1f3a6e6b..a4b30e5e1c 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 646f37d850..3d8583d942 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 a088323aa1..f92a53d0b8 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 1acd88cf75..e6d956e752 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 a6309c59a5..7fe4450a5c 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 59fc682d1f..56bf9803ff 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 9448b78abb..ded731fcde 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 28ee5f3122..ae90ba0728 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 b107d8fe86..3983827da4 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 af4c873494..9183477d2e 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 07f1937878..f95454b4ba 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 7dc56f8181..bdce23f8d4 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 e2ac14c36b..91b1f5d6fa 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 70e2bb109a..298342cfea 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 bb31a623f7..4d83949963 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 e4562fdc89..c8cdffd372 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 78a014c59c..1624b1ce0c 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 3b67e5f0ac..e75bf846f0 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 e67d50312c..48bd0987be 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 8408a1fdd0..08cdaa1fbe 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 38e063bdc0..712b59b90b 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 cc4821dff7..e0df7eed54 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 100a9f8bed..a9e8b45311 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 146b800d0d..1e3a85b2a4 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 675caf0575..f015057f17 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 2c67b9954c..45d0339a26 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 2126922d8f..2ce7e59402 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 2a05ba1ad9..be6bafa779 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 ab7faeac84..40be522210 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 12499c1565..d718d735d5 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 f0a70f45af..4db2e6719a 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 fa13facbc1..3d82d048e0 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 ff9977b608..dc578e8a5c 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 99af3d4cc9..b4fe1165e8 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 c06a2abc53..9bb22a7161 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 599ad87aef..b06e1fec81 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 5fbcc4c1db..0ba8c7c68f 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 fbfb10f08c..4ddbefd1be 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 03a15728e9..6b7e4f66a1 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 146395c100..416aa18e4d 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 479d8a8c4f..0a17248790 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 9aa4176717..1948510c1f 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 9363d2790b..785d3865b1 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 51c8434a71..8e92e786ca 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 eece869429..fd6e7a4112 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 27f105001f..7408598158 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 b664a27559..03b57603a1 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 da84032993..6da4d2ab01 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 f0831c2f2f..75b9fadaaf 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 0f7395887a..ba44feb59c 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 73ea9f8697..e4b3195a10 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 a2a45e8749..fdffb3fa1c 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 90f1654131..a5b318ffcc 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 f7fad057f3..563fac0824 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 d4c791a666..2cebd3b033 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 2ee5e22d2f..438227e65d 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 7c536fb64e..936d32f513 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 56ad56f4aa..f2f6c4c507 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 01451b131a..7195bc3666 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 1babe58ce3..4277325b55 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 acce36d766..2432c7cc87 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 571012eef6..17c9755a3a 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 176c5d21ec..36659e7f25 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 f14b542b5a..44881089bd 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 15b376d543..305700e2b3 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 9e209d0878..827b2bcdca 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 357c46e686..109e53c032 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 8b0bab747c..990e47c8c6 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 242eda87a2..8df09d8c8b 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 9c57d5b174..a584015720 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 5c2674d731..7f178d1341 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 eee7f4ec98..1f5c026f39 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 fa29882774..c767e99122 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 e3845f9cc1..80dc6ffca0 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 66943fc512..e36f239724 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 d836812f8a..3de1c43366 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 c14090e05a..bd155c7d86 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 96b8079692..bc7b4803a2 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 49ee5df35e..5627654505 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 8afabef332..613d939e07 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 313dc4aab7..3115b5d6f5 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 8207cee990..7333a040a8 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 03880f4609..af73301177 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 da4588ad64..27e094c5e5 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 b10781b3e8..cd581bbbc3 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 f7f3405fab..416c8fce81 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 1064705f5b..f1687830ab 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 01006d8449..ea838d400b 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 db2aaad54c..2edd730519 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 b959acfa1a..b661f97652 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 eb3c0d3271..7db0c3b11d 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 947614aaee..e34cb332f4 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 cbc4113849..fb8c0c2d3e 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 f08ebb51e3..7e4e195ea1 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 981e6b039b..85ddd2cf4d 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 e9f2a9fc4f..097affa099 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 5516283037..64ef534b6a 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 0db618acf6..d7a3bd9d1c 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 abfb92a56c..2c0f067086 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 c6c0f48afc..7fa5618e0e 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 c324e7932b..285f378474 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 285db6e2dc..74765e901e 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 6cea1e8bb1..feb7f09eaf 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 399b452d6c..99733c485c 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 56ebf519b1..0dbc87a0b9 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 a66848730d..e5d4a03144 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 5050ed0e17..83c3e99d72 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 c555a3869b..49ec507636 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 1b3dfeb3b4..42b9ce9147 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 397b5e2810..26290bed31 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 49d623bbf5..f9def56022 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 f26a6fd9b5..25a053f8bc 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 aa7253c5c7..8b22e6814c 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 5edc1402de..77a6e963e2 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 a2d940a4fc..41013a45ee 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 bf9e95cbda..ebbbca47f8 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 6b3be63f81..4256745825 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 f3bbc0d9ba..6597841e7b 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 ab2526a6bc..00f0e0d2d7 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 65adfbf3c7..731cffd733 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 b63792e478..c430b3f33a 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 16dd40b984..a4819be309 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 1ef472bbb5..23ab395289 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 336146bf42..4bdf5dd61e 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 e90d01fb53..a49870ca26 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 f7969ab97c..4937afbd4d 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 613551635a..1e09ace414 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 c00e216868..802e78f284 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 e42d8969ae..cb37578d72 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 7b34681528..b5ba69410e 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 604a44dc50..9f8743bc5e 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 eb20998723..11c5e3f15a 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 16d754f1a0..5ecdb0f4c4 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 cae02c50df..49f0bccac8 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 deceabbe09..31cf9039a9 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 c2a8c6ac1b..af53805107 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 3a3ee07745..593d8e7241 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 6673130efe..495db61320 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 15bb039415..630f509348 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 6096b236af..31dce083fd 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 c7b02655a3..3f2375182d 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 a3f08a27d4..19d8158d09 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 c037878d1a..dde9c44517 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 e13f3d4ee2..1fe4519f7d 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 c16e007bea..c801797191 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 472405b47e..7d7d43d16f 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 40e1b5a0e0..cc57aae576 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 ee937c4664..91a2aa5b05 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 e189bf3e85..9443c2e2b7 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 c5202c77ff..435f0a33c3 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 fa0bc42bfe..b174c9d86b 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 3771842881..7cfaa38b87 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 f551da471b..39c66427fe 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 24d350b1ec..4d315a45eb 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 836fb0a6d9..a9b648f642 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 a970121fed..3cecfd8ce8 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 1667ddd8a0..58d095ac93 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 953e53af90..82f9b82dc7 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 5f953e8c8e..bb1b01624b 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 7fa8d2c6ba..e28a46e475 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 4bf0642502..373025154a 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 4711610a28..6cb544260b 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 9a14b96ee8..b9f4d9ad9f 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 93c180ccd5..cb9b88a6da 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 7c9ae4c80f..6876419d2e 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 931ccfecd5..5a29dd84db 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 ccf0d76496..e76a54c1e2 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 e917e3e0c3..c35c139957 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 ac9e58bc83..fc0920e71b 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 8e101373a8..90da86a2da 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 4791efe7ee..f424caba3c 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 2e2b91f50d..19dcf0a62d 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 aea372a8a3..7477ac6d34 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 e66df7c018..c9f6f15e5d 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 3ac45ea658..ad9e7ecbea 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 1bf49fe19b..c90f0a5967 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 2c6018492a..301aecc618 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 986f7c17ce..f3ef03f0c9 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 3a93592ed7..b43f6be38f 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 d10328fded..2cb743d0e0 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 c59de0c2ef..6cc6bd21f6 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 794772a4af..2958c05a78 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 482bc69f31..3fe26fef84 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 bcd96c38dc..78d640d372 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 7a0c10756e..772f45ba00 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 84dfca999e..8dab3daf74 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 a2d3b1d7f0..191bfb302d 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 6df5ef76e4..4856678528 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 73fff005a3..7ba19f02c6 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 65e02f00a7..575d01bede 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 e678490ab9..204df2b9a1 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 995c07b17b..107c33e8d5 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 f8240cb38d..457d1c6f69 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 a1f335137a..fc8b699b5a 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 5558818044..0d8f22b0bc 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 80e3de9c28..94d8f59a25 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 a52f2f778d..bd65a6527c 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 1f731f87c2..9623fe982e 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 2fc3151ec7..a6f6556154 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 8656b45b98..866f923c49 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 24debe7673..36d838c8ea 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 1f50bd5ed8..671c6537de 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 d88314fdf6..3bab161131 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 2640670fab..f93ccad3af 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 f72db9cf45..1164a68598 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 20207ba2f6..bd3e9de0b1 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 239cedea16..77c9e4aac5 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 4732c755e3..efb06ff066 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 c0e7671036..09098f259a 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 f55ca40a13..faae6324fb 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 dbcc1d2f97..687038b530 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 071854a5a5..6f4c808084 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 a3bd6cc818..6c4d5262f4 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 a606174243..6e34dd844f 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 3eea729724..79e833edd5 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 63fdff4212..f8897035ca 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 ab8334c397..545241bca1 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 99a8dc23c0..02f8fde905 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 88046d2a4b..f794b51e60 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 34d0e30130..520b97cdb7 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 c4929049c5..ffb0aebe0e 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 fb69ad9f04..64e408289f 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 3993002c26..a2a18c1a91 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 5f190c3fb5..536db3e0ef 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 3a19cf04a5..2d11e09f8b 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 0508bb7c93..00f547e86d 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 7bfb7e55eb..9e0e93d428 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 b0ea9f2ad3..fd5e734d72 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 cc6027cd18..df9c36b6d2 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 34f875633e..20e358d047 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 23f82af233..20d20a227a 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 aa96070cc8..71c98746ad 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 188c3f22fb..55ab021b14 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 bea50f4def..44379d73e8 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 fb4cb67678..4013c9995a 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 4d726f6e28..f97abf99bd 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 69aba63a5c..7c0d454d2d 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 a630c67fd6..3372b732b3 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 c9c3359c01..791f5f413b 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 57f70ea671..adea27dc19 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 89b6593975..924eb0808d 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 59f19d7cab..f6cd904dcb 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 3ed5f6076c..84dbbd9631 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 4cc5c01920..9c149c6fdf 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 cd4f1371ac..1351365b1f 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 2c640ece32..38be39cd45 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 a14b472dff..03187b8844 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 47a93f24d0..298bb680d3 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 8e7586c9ca..14f4ec6fb9 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 bd2b028065..58234bd4b4 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 48f8565bf9..7535ffd334 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 85448f9c21..5e98634c58 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 35903e2bba..12379e6241 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 b77a2b2611..f7895039ef 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 3da10fa87f..ed65153da3 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 55e08e545a..362cf0b25f 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 5a57a549c8..d49062b9e5 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 57463d18ad..b9eeac4a0f 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 490b232daa..d0f1d6edb6 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 967fa36735..09b3706544 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 77b890c16e..2e88e014c6 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 51517579fd..1ea0ab88d2 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 d1f5dfc6d6..d3e8ceba75 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 d351da26cb..317ce914d4 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 bddc7caa89..11ff73ef38 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 e169565785..fc04353d2e 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 9351957b4e..c878a7e8cb 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 7b65fcd41b..dcb6d452f2 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 100a24126a..4bc7d95a83 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 be15a7be20..bc67aab285 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 c362e804c5..8e28128c35 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 47dbf395d8..51fb419f6f 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 6bd84d49f7..aa56f9afae 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 026987bcd5..5caabf82c8 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 1230d3dcb6..5d6cc45b16 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 08317a521a..5dae4e88c8 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 2848e7fd6f..b65a4ebbe5 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 32a3e7e45e..1c94fc017e 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 b36c744b46..2e61368ca4 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 09e0d57613..8773f34ae8 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 f2551fac88..d1bb55b05e 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 d237985cfe..6e7a24cf34 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 1dcbb3e687..36aa6851f7 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 62c488912a..0f50cc7d75 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 ad938e6951..464d61d4f2 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 3fbbcb8824..d6b58c8c58 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 ff8752afb0..eed9975ca3 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 0a416f779a..5dd0721ac9 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 3af8453ee7..08f28e463d 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 cfae49e26f..3df4d67bb0 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 59c0c1bb8b..dc7f28c68a 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 fd598bfe8b..6c2e82f978 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 bd676d776e..1765012c8e 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 ce161e80e4..0babdbe74e 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 52696c38c0..c1b6ebcf1e 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 edea2292e4..695c975bd9 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 d74b4fac8d..13a6859b34 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 a3ff82c50b..75e50e44e8 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 7aa20ef3bd..a1dc0df8a0 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 79cc392e51..ec297de895 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 cd07c856cc..b34171765e 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 247c444dee..61e046dd58 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 7eb3e6ad39..b314a36073 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 f6ca2ef90e..6200859d67 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 634c2b05a6..fe286fbec6 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 973232d702..6bbbdfbad0 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 952c43a863..30d1868262 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 3cb5491b10..d3504bb16d 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 aefdbe9e7c..5baf0fd414 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 8bf8c7a21c..d7f6c06b46 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 21442f07c0..db02673aa1 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 7c504e4bd4..c938431f7d 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 08c20505b5..ec09280338 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 98ff82cc40..cc2f665df5 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 a01d8d5485..616f1ed0f5 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 d0641ed0b4..96e593874f 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 474b626e95..ade1973061 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 7b23352bcd..975b1b3750 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 6319175892..6aafb58691 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 8b1f69d619..f13fa802de 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 3d6a9b9ae3..f54b1cefd4 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 abfeb8365c..5a3f74de11 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 47dfb0e21e..156fa5f470 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 c3ae0152cc..8d69853c51 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 753a005549..204a391087 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 dfd05d4dea..28976d5246 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 79c489268b..5262f62638 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 03e24c27d1..63920afd04 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 9604772c0f..1d852de139 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 3a21de88a9..09c52d15f7 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 9d7291f0c7..fc634f3d0d 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 fd8a824d86..b57aa62e40 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 eadb886c7a..e35ab35eca 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 0087dbf65a..36ad9e52a0 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 c492348070..4e783c2681 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 a444458e04..5b9b1221ef 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 67c2b36a36..24479e3029 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 3926bba5db..8225ddd467 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 4097d124b3..c2999c10fc 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 18fe4aa163..2eaa2883e1 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 7c0f266b16..11d645468a 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 137c76eac1..6fb4144feb 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 200b3c5cb4..6a879203b5 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 a101e8b641..b0f3079a74 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 db1d1307af..a8da6b0407 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 65e95476a1..03e8446b65 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 6287039751..4d6de66c6f 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 1e0b4e0d44..79ffbf7ba7 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 1320509414..febe1037fe 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 d6e8f2118f..b2ee60c60e 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 4ef6eb5b15..518eebe9e8 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 98b5ef3478..aa320223b0 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 9dc1cc956b..d6ea5d9bcf 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 028d8f3312..d04076634c 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 295116fef8..863f349a88 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 e76a0d062b..0ef375704a 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 60f4acec4f..2c4759b2d2 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 1ffd2f630d..e0a7e8fa4f 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 46cf13e684..2b2c2399cf 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 99b68b6da5..607ac0e361 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 8a87fd1444..f4d4abd69f 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 2b44461b81..d5906bbaee 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 82e896793d..726998c82c 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 2fd090a15c..9a860f0c69 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 7178f26954..3a84802b33 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 50715fb41c..16e3da2280 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 2800415200..56ed3fa0ed 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 cb101ef890..6a4cacb161 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 bd9167f8f4..effe006205 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 a1cf34393a..9d31e67a1c 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 d66757dd83..4c94c3d7b9 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 e97ff4a658..0ecfe1c097 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 311ad30fed..2fe5e58ec7 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 4ef1509608..4105c186a1 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 e401b2a4df..c99d9cfa6e 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 0b601dc025..9317fe6f18 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 7330ad41b2..0e6838bfe7 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 5cec6b3f7a..c1dd81bb1b 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 61d3c7377b..6ae906f40d 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 7097d944a1..5f3a3742e8 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 0285b341de..b411638998 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 d51845f444..48d71d4a80 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 6a9acc70d0..4267bd0805 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 748e3aed5d..26992b3739 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 21a6040fa9..64ec9c2749 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 57928b2834..451aed309a 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 e50559fa97..25a479f93b 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 d8dbaf53cd..cc7bc1ede8 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 f8e853f002..c39b3cf157 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 edf222bdcd..3eda497a38 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 1043cfc90a..4bc0040c2f 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 d3ba532e25..ee4e1c4dce 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 eeaae76531..ba126ca0c1 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 c0df31b6d5..5c9de861c5 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 b4b1852b0c..aa898ed535 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 57812a1798..bd6e3f5859 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 3ea1900f8b..cbfb3dd3e0 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 1fa604b610..122b79ee1d 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 2ba92d5893..160eb2b692 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 aa3398fd5a..35dba384ff 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 5d594a0089..f860b54878 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 27c377d549..4d40fee62b 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 f6919b0047..2e8d74b534 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 fc88e8b4d4..c7958c5ec0 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 a59e5d8c58..85b02d39dc 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 27301931f4..37e2bf8949 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 a5fa43bc61..a72159e4fd 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 9febdd607b..b902ca55f4 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 61b1149260..1b8106f4ae 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 4277464c7f..8c45032b64 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 0452b31391..728cc2f5e8 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 f232e01a67..7b9218ef4b 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 96dcab4167..9f3d0fe209 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 17a728037f..4c88fcd92d 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 f415ede51c..757477a563 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 beb2bf310b..c57997b3df 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 7bc89d2a23..f13b1b29c9 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 17088e1323..6579e281ef 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 fc89873d03..ceeb7780de 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 38324c060d..76b5622164 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 e4ca8e2114..6c5672cfcd 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 05a5e59990..079bfe0134 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 1482369418..361388b674 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 206027bc9e..308f722c61 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 f2228f6ad3..40c6aa0f76 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 9f1752b54f..976a8e8513 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 2899ca7d9c..a2e6b4d74f 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 e5359b19aa..4daeda6aea 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 270867acc0..1af30ce5a1 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 deeec31647..da08592ec7 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 ea63954bd3..8adb230e03 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 1697663ef1..ac2baad055 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 0ef935f366..1ed86f1ef7 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 66037700ff..4e3405f21e 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 f4dffbbd34..db88f2a34f 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 0880fe6360..bb2ae2af7d 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 f484ebf1a7..24a4347c08 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 261de83093..44c69e8df7 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 f50f0143b9..349c100599 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 68527c7b8c..dfe8679267 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 2d680f26d8..7bb23cc86f 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 2b22bf7af0..3039d6794f 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 72feba58d2..0ce919554d 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 78cf87ca7d..4abdfb65cb 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 0d346ca0dd..34df14a3e3 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 01dab5a428..ba779162bf 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 863e5f51ee..4a13e9693a 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 6fa8317bab..f6b6b5a777 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 174dcba630..bdf6a636bf 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 beace83cfb..f98bce56bf 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 73c0300c1e..ed62b806af 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 eda2e6881e..4903d523df 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 ed79dd0042..416cdd378a 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 3cc44c349f..84a0edf959 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 d7ec773ce2..9a5590568f 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 13c8c6c970..129a8ea677 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 9604dcb61b..13aea38b05 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 5b0a184611..d7396821d8 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 69e1cd8173..fd46bffd72 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 521a88b687..3ce4d139a9 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 a967808cd6..41b5139d10 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 a504ec95f3..e992398a0a 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 d2d41fe7d9..6baeb88e7c 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 35675aa5dc..2af98d0614 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 ac16531c27..b304a30a15 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 80b5fcce02..fc57cd65d1 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 352e49a558..f7bda9161e 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 d0f084be00..1ea5ca628f 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 a65bc6311b..bdb1af6a9a 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 dca4527a4a..9101e4381a 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 389c17115f..c4ad255232 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 3bfe6b4675..a222b1248e 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 fe7d62358d..bdd8e721e1 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 a943d8cce7..7fbab81488 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 0a134b2806..65a77cdc20 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 47516ae461..b5a379c6bd 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 fb1395f5f8..4893d6261f 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 b0e24f271b..27f062fdb8 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 ebc8a0b00d..62b3e12f01 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 3617c6cf1d..602c8ba5e2 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 bdfb8bd2ac..bdbbc23c9f 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 66eafd4807..d63ede2e84 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 9bb12c75fb..82201ecc0d 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 749d4762b4..ef04819720 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 f23c1dc35e..eb5383c578 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 7477ecec8b..50f6275b99 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 fb6b25d439..e6acfb8a05 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 f4fc04209e..c57c318dbe 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 15763dbb79..2f6eae6812 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 883be43189..460c1b33e7 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 a1f45e7f12..51b3d05cb1 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 6da1875a1b..68eb1ef526 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 6a55781908..0fd9f74f9f 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 93e05f92e5..d4a71aa56a 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 d91774422b..b72cf26401 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 7bee91b06a..4227e94f48 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 7c9ad7d479..843e340563 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 37b5b46b8d..5e1dbe3988 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 ab24962902..c1eeec9bc4 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 58b0b93ee8..ad5601a14c 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 8a5b7b0b98..8bf1c245f7 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 a2524478dd..4e763a6275 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 9cdee99d5e..4902522fe0 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 258035c626..05b99e9718 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 c7e2059b34..1298e2fb10 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 863a037c15..e538f8bd98 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 9145a3f41f..2d0b57aa0c 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 694b3bf215..bb9f6fd984 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 5beb4969ed..167da70c2d 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 81254fafcb..857d570b02 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 c3fb6d7f2e..1bf4a07ffe 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 bcfe548a3c..6be382fbe8 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 6b0227f14f..419a7e873c 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 863fe0d4a5..8205b3e7f1 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 79bca60901..36be070c56 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 7730141bbe..794f1398c4 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 f581416b25..621020492f 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 51579b41c4..377e8b802d 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 9eeb8c30d3..1edc62dc99 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 5e8148e780..9578ff5e2b 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 b686108fe7..1919be38e6 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 45bdfc951a..cb0998c19e 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 0d11072322..1255c93e05 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 0bdf7039eb..9c3f059b62 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 831f78943b..e8ed622694 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 db0b10defd..82bc7eb70e 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 ae04f8f497..02a6e73e72 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 73640eca3d..9bc47aae29 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 33ee29b869..db27a6b1a2 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 39d57e0f82..e3fc6a0bf7 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 e4bc7c23a3..d1266cf0c3 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 47804b55bb..1e09390c81 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 4f7b300493..591d0f4a3c 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 070dd763d3..372ac8b3a0 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 d018a3eb71..7dcfd7dd4b 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 0b3b2cab27..a39bed8587 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 d42e5934ab..d0c3246d67 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 4718ef2c24..1c46229518 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 c661907257..ab715ea4e5 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 34be9952f7..0f1d0276af 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 88133c2ab2..4f30b301cf 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 4e522f2467..6398c3a642 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 b4d871ea81..f3639138ef 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 d5dfc4dea3..4bf3149622 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 900266bd3e..ec45794d60 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 d6d96291e7..ec7011e9dc 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 21f700d70e..081f4e9fc3 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 b50eee4d28..177cf242de 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 4e8bf66ab2..fa5ba76f36 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 270e81f71a..39f0b3dcfa 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 f1965ad36b..fc3e522f28 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 5e213ed9f3..58c7dc5e19 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 246fa2b75c..8634afe588 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 c49d095635..a657308e05 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 9386f99a6d..f2c23a946c 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 43cc267855..4bbccc0187 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 154cb98218..67d8e02dc1 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 fe66cf52bc..ed1a85219f 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 3dd620e3db..ac1da94912 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 ef801c2709..95ec9f994e 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 3eb04db27d..0c08bb6d54 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 86f6e094a5..4667ce9bb6 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 e3cfb8b6d3..9139d494bb 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 a2b6f31850..1d649dd79c 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 3d00d626f8..289e2c13c6 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 8a8d7abfec..cb9a3c2f85 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 486c79f43e..31138738ac 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 8793f32f1f..8e1385d489 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 4b45f3a4df..576675085d 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 5b9f1657d3..9ca81a3c38 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 700cbaf608..f5f3590632 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 c5e40d562a..4f8f5f9d50 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 2e4f3cc74e..d0690fb03e 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 3552b58b89..683a8430dc 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 f7e08c6695..ff38b1219b 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 6d57d952a2..0ac7131bed 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 cebd5c090c..94f9d288ac 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 225c1b5586..f781edeb42 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 40932cfa15..d4b2ff9061 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 ffed60345b..7a367cc308 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 6fa03f9d7a..48ca87238b 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 75a40c7111..83acc9a8d9 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 26f62e7eb7..bb78e3279e 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 cf43285af1..126a2828dc 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 3c04413b09..5f9ab3eef3 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 e0e166a8a0..8b3fe4dd91 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 67f244ff2a..6d455ee3ab 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 5d3715f4bf..9fee0b3551 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 fa2538e340..cc25314e42 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 39fc4d0634..5059f45f73 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 4a467ba7af..a532ecbb66 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 190409d75a..a755849f69 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 07be0ee147..14bba89fa0 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 05f939b726..66f758ef9a 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 45530ea27c..c671b0c504 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 0854b46982..ba5d20ba99 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 b4b320d20e..e3b493e92e 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 218d8045b9..a29542d6e8 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 e79d5f4567..c637d7b25a 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 5581bfd6f3..f75b2ba9ae 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 345fca8619..2d3d6fa678 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 b6e6ba01fe..8ab1cfbe1f 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 0341039add..f07101e7d7 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 c741600b19..81a8a09cc0 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 ddae16a06f..fc0a19d33c 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 f9e416f221..88745314dc 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 dac20806e0..2f32c3dc1c 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 4efefc4a04..1476ddc31e 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 ad442e2610..5aaa76d167 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 0efbeec64e..be5f333df0 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 091b862aeb..b7ace965c3 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 78b1f85beb..0a614ba664 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 85150d8d37..9c80cc8a87 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 3d8b85ee39..626bacf4fd 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 42129cb13a..70bcae7d72 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 a7041a3fc2..f8d93f8c0a 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 c7eb66b092..60a01f82dd 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 6e4b379748..4b00fbaa65 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 1c8ea59f13..7397e86f18 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 940b4a87dc..a5115b1734 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 f390feb5e9..69c97dd853 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 d88f7dd02e..b008b95805 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 ef80ee5ce0..9e2c40fcbc 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 c43a64928a..5a36f8f8fe 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 1895686e04..5ffe671317 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 d7f9b4bb8e..d17a68ba44 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 7df8f121eb..eb90c4fdab 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 a533772f99..7a2ffd645f 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 6b6ed562ea..e41afafddd 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 945155be8e..c309993d74 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 5c44bffcbd..8d5c26d7be 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 4135b682d1..fef91ab698 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 3048a39174..937b297c22 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 bb8d1e54f0..848dec2945 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 39b3c74000..bbc1de6b8b 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 2bb04cbc28..1c1504deff 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 cb3ba9f7b1..46c4ae0f71 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 b05cfdf0a4..68f76a58a1 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 523f25f416..22e9c05412 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 6653da304c..68813d8141 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 af694cf48f..323bdabd90 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 aa98167379..385f057b3c 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 bede45b055..3eb3533ac5 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 b32527868c..d6906a5929 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 55436ac1ee..cb8f844cb2 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 0f3a2a8961..0adcce3375 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 83332dfdbc..f2fd2ce7d6 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 400004ef26..c410469a7f 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 8a602ed5bc..7d179ba30f 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 bfe87318a7..54e5d82cde 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 4970dc325a..a8a6edaf15 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 01eb111a15..59cf3d4ba8 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 d1d40f1550..03a79e3876 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 1fc79f99d9..484c44f502 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 5b5be0f452..3fcb99dbc2 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 9280622965..b0ba5c5592 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 47d8d902ea..85b0d3ebff 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 a0ce3e841a..f4498c86ab 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 4a8f76ea9f..7f321ffa97 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 957ae6f3d8..9e3082a6ee 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 a58d40b141..1db7dabf6e 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 1ff40e35ff..7afcc61db1 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 12342be8ba..69f3832390 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 d766d7f1e1..d48b9039c0 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 5a69b7c7f0..5501f9271b 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 edd339cb90..4a074170f1 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 f48c05b1a4..d564a00015 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 fd766a85df..82e3bc6774 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 033d3917f2..fe65f81b9f 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 e49d82fa9c..5ae4a2e2de 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 d2dbf00af0..ba9db62697 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 8f2468b410..2366a37f00 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 0ec9c2713e..c4c5284a77 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 f2ff294c28..1e56f4549c 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 0ed3d8f05b..fcbc48dcab 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 7a19b42448..2cae5642cd 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 68c7bbb575..43eaef7179 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 4f532ae60b..4344b82e3e 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 faec221378..791a0e0347 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 48cd0a4175..725e9f6343 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 2ec7fb4f46..1e03b81d07 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 d08aedde7c..0ef668168f 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 3481fbb3d3..b13d4d0ecb 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 0c54ff3ae7..1f64714aac 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 6691810200..f78aa05e34 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 1e2590d9e2..8a194d7ea0 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 6dc23d168d..d6ed421d29 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 64498307f7..fe5d78bcc7 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 589425f8d8..51bc3d1ca7 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 2440f118a0..95374c9068 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 352bd41e9a..99032bed75 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 e8c83de6a6..4c967a6157 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 4f89f77276..ad98e29860 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 938601e351..64d1d6e122 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 05227e6b05..2982356333 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 54c8d459ea..485b88bfb6 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 42ae336e75..a520eaf55e 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 e0c6c20b1e..715a80fd64 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 6b6ae9aac9..ddf7dba1e8 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 4426f6bb98..53fd4f00b1 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 9cb92a3a91..7537eb1c2f 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 b989ee7335..91d9587b6e 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 358240a022..4bc2462521 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 6451827a6f..15cc7ff5ad 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 a73648a91c..8e54b03b2d 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 d5207dfa05..6ec5b13dfb 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 3b0a19c4c7..bf79e65102 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 3fc97753ba..0640d66f6c 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 7091fd9a79..ceba6f2928 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 80d0c90de7..39d70022a1 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 2795140e88..75f278ff5a 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 886616d44d..d73bff12d7 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 cbe93b7bd6..3921474911 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 f03bf79760..e5dba535fe 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 a4accba3c6..a22e7aaf51 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 6517152a9b..5bff441a02 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 090baa752f..328939f99e 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 bd0d5aec1a..7d2d482965 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 d6002397b8..43de3ffb67 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 7dec08d075..c74f85e4d4 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 e9560d4061..dc220c4b27 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 8080cfadfe..68d9f79813 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 2ce23534a7..63eb85e90b 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 d3b130ddf0..9d0edcd2b9 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 3a8f5613c7..c7605a4af8 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 23b5fba43f..30703fd324 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 a5b203c119..1189413b07 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 b64b687d37..f4da711649 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 c560a33bfb..4fef47af79 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 569bf1ab67..4c0aff2390 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 6021bcbee8..22d57df190 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 69faadd6ad..f215d5d5bd 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 06defa2b88..bddd41ed6f 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 79ed8d3dbd..2d15cc4718 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 67ad768bae..31fb3964af 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 4a818e67c2..0f29c1839a 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 33525342ad..066d022cf2 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 067b806783..f6d1a923ca 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 8a492e2d62..ae993382ae 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 9f0e3b4b55..853def44a0 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 5e44b542b5..68b2795721 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 0e7bae2866..9997c820e3 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 d001713146..f77ba00a47 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 ba7df074db..54401e36c1 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 0e5f0dff9e..8ae5458024 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 9bf74739f4..614edccd58 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 3ede4012d0..9f01743c45 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 d50ee48e56..1f7bed229c 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 d552afb455..bd5f8258d0 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 0ce02d7838..95243a9de8 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 6fb672c6d3..c947f0d74d 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 094ca13d10..fb5e3f21d4 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 9cd82a28d0..837e849912 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 330ca6fc8c..1e26640ed2 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 0101bfdb5b..2e0bded009 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 bd0db6947f..b77d8c6cf1 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 fed5975bea..f1857802b7 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 6d637ea42a..4a54d4821d 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 bd6c545832..815eeca396 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 df4e995687..451114cacd 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 16a3738b97..9ab68433ae 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 03840821be..21c18bf132 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 811b3e5636..bf629010ad 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 d9be058b99..61d6328915 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 cd5e148419..6cf15b53d4 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 047864746d..777e7db52d 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 15c71e11bb..d879c405d3 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 1b4026f6ff..53c1268dd1 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 83dd86d36c..0513b3394a 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 9d9a90c441..6d90723b5d 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 8de3e8baf0..fd5f8c3760 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 5fdf9fcc9c..f0741c09ce 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 255b84479c..82d489ab69 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 864184c742..5daea1f0e6 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 d241c1a112..72a7e4f331 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 cb4001511a..1e9bd580dc 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 20951613e9..25c6859e3d 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 afa3822334..585e2962bb 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 59ceb1a122..58a4abfc52 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 d584923c90..cd96eb84c7 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 c5f76405c6..1fdf8007c5 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 f83c89479d..9c654d642e 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 ac7e20c0c4..185e611ec6 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 c3e1c133fa..eed45e2182 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 04af88f946..6173479d5f 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 3fdce81c11..4412063076 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 f229452927..58db5c2f44 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 7fa0065b9f..0df9ea9912 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 ae7c1548f2..471e16fcfa 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 f436d37104..468c16916e 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 e8285ea268..1318a10ca7 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 4426102874..f4d4a4151e 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 fde1395b14..1a5ed2c938 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 fc0e55b95b..ddb0184110 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 3f10ec826f..6444b9c59e 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 a99e5009ef..2b0e4fbb79 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 7b662452c7..9e099c482b 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 ef4c3455c0..8a15d0491e 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 4772557391..0e23a6fc9b 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 b57ce3a9df..5fdfd28bb7 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 732a563d1b..5326a529b1 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 37c680c0fd..529174d0d6 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 65ad078cb3..d24674151b 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 dfb9c42af1..3ed6703342 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 fa055857f1..b197d5694a 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 4913b525d2..662f5a3516 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 fe689b8872..3123df66ab 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 c5b537bbf6..c52270d8ca 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 9d729b0f10..12c6b0455a 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 250038c334..019eb5d2ba 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 83dfba9a05..66d9d893c6 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 28260eefab..61ef055152 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 30ba525763..aa7487a637 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 1b11705560..1bd22e75ed 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 94ad695bf9..a494883eae 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 a0ae4132a8..6a4a43095a 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 66e0ef4287..5094dbbf2a 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 4230a8b11f..9cb074a219 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 5aa0c21eb7..97117158e2 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 259f1cf681..61bd4ed589 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 145e34ed22..29e54a3ebb 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 cfe522bbca..fcfc93c663 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 8822e6a798..0b3e490a75 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 11f2163303..b7c32a7387 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 adad5fad39..659d07f1b4 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 ec13575c70..52cf5f7900 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 2b2db915a5..719b1f0568 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 1407e2c7a5..8929b1c649 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 bf0685073a..36c35a57a1 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 61fc98919e..79bc948e30 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 98efa6561f..88c03e24f6 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 69051bc0e5..5e98256fc0 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.