BAEL-4663: Rename packages

This commit is contained in:
Michael Pratt 2020-11-14 12:03:06 -07:00
parent 2715bde82a
commit b610c4d304
5 changed files with 6 additions and 6 deletions

View File

@ -51,8 +51,8 @@
<configuration>
<release>${maven.compiler.release}</release>
<compilerArgs>--enable-preview</compilerArgs>
<source>15</source>
<target>15</target>
<source>14</source>
<target>14</target>
</configuration>
</plugin>
<plugin>

View File

@ -1,4 +1,4 @@
package whatsnew.records;
package com.baeldung.whatsnew.records;
/**
* Java record with a header indicating 2 fields.

View File

@ -1,4 +1,4 @@
package whatsnew.sealedclasses;
package com.baeldung.whatsnew.sealedclasses;
import java.util.Date;

View File

@ -1,4 +1,4 @@
package whatsnew.sealedclasses;
package com.baeldung.whatsnew.sealedclasses;
public final class Manager extends Person {
}

View File

@ -1,4 +1,4 @@
package whatsnew.sealedclasses;
package com.baeldung.whatsnew.sealedclasses;
import java.util.Date;