[JAVA-621] Ensuring each article has its own package

* Putting test classes directly under abstractclasses package (no need
for test subpackage, we're already in test sources)

* Removed unnecessary keyword package to just let superkeyword

* Renamed scope package to variableandmethodhiding

* Renamed package basicmethods into methods

* Putting test classes directly under methodoverloadingoverriding package (no need for test subpackage, we're already in test sources)

* Moved publicmodifier package under com.baeldung as it contains code from a separate article

* Moved privatemodifier under com.baeldung as it was under an unnecessary core package

* Renamed staticdemo package into staticmodifier (was more adequate with other modifiers articles)

* Putting test classes directly under defaultstaticinterfacemethods package (no need for test subpackage, we're already in test sources)

* Moved thiskeyword package to com.baeldung instead of under keywords package
This commit is contained in:
dupirefr
2020-04-21 08:52:04 +02:00
parent fcc5cfb0f6
commit 53f6659143
30 changed files with 30 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
package com.baeldung.basicmethods;
package com.baeldung.methods;
import java.io.FileWriter;
import java.io.IOException;

View File

@@ -1,4 +1,4 @@
package com.baeldung.methodoverloadingoverriding.test;
package com.baeldung.methodoverloadingoverriding;
import com.baeldung.methodoverloadingoverriding.util.Multiplier;
import org.junit.BeforeClass;

View File

@@ -1,4 +1,4 @@
package com.baeldung.methodoverloadingoverriding.test;
package com.baeldung.methodoverloadingoverriding;
import com.baeldung.methodoverloadingoverriding.model.Car;
import com.baeldung.methodoverloadingoverriding.model.Vehicle;