Skip to content

Commit 28c3781

Browse files
committed
🎉 项目名变更
1 parent 27ae997 commit 28c3781

File tree

423 files changed

+458
-462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+458
-462
lines changed

codes/advanced/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
<parent>
77
<groupId>io.github.dunwu</groupId>
8-
<artifactId>javase</artifactId>
8+
<artifactId>javacore</artifactId>
99
<version>1.0.1</version>
1010
</parent>
11-
<artifactId>javase-advanced</artifactId>
11+
<artifactId>javacore-advanced</artifactId>
1212
<packaging>jar</packaging>
1313
<name>${project.artifactId}</name>
1414

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/custom/App.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/custom/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.custom;
1+
package io.github.dunwu.javacore.annotation.custom;
22

33
public class App {
44
public static void main(String[] args) {

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/custom/Apple.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/custom/Apple.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.custom;
1+
package io.github.dunwu.javacore.annotation.custom;
22

33
public class Apple {
44
@FruitName("Apple")

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/custom/FruitColor.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/custom/FruitColor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.custom;
1+
package io.github.dunwu.javacore.annotation.custom;
22

33
import java.lang.annotation.Documented;
44
import java.lang.annotation.ElementType;

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/custom/FruitInfoUtil.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/custom/FruitInfoUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.custom;
1+
package io.github.dunwu.javacore.annotation.custom;
22

33
import java.lang.reflect.Field;
44

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/custom/FruitName.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/custom/FruitName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.custom;
1+
package io.github.dunwu.javacore.annotation.custom;
22

33
import java.lang.annotation.Documented;
44
import java.lang.annotation.ElementType;

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/custom/FruitProvider.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/custom/FruitProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.custom;
1+
package io.github.dunwu.javacore.annotation.custom;
22

33
import java.lang.annotation.Documented;
44
import java.lang.annotation.ElementType;

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/standard/DeprecatedAnnotationDemo.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/standard/DeprecatedAnnotationDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.standard;
1+
package io.github.dunwu.javacore.annotation.standard;
22
class DeprecatedMethod {
33
/**
44
* @title print

codes/advanced/src/main/java/io/github/dunwu/javase/annotation/standard/OverrideAnnotationDemo.java renamed to codes/advanced/src/main/java/io/github/dunwu/javacore/annotation/standard/OverrideAnnotationDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.standard;
1+
package io.github.dunwu.javacore.annotation.standard;
22
class Person {
33
public String getName() {
44
return "getInfo";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.dunwu.javase.annotation.standard;
1+
package io.github.dunwu.javacore.annotation.standard;
22
class SuppressDemo<T> {
33
private T var;
44

0 commit comments

Comments
 (0)