Skip to content

Commit aece4e5

Browse files
author
mikr
committed
JAVA-1522 Split core-java-modules/core-java module
1 parent 4cb0781 commit aece4e5

File tree

28 files changed

+10
-86
lines changed

28 files changed

+10
-86
lines changed

core-java-modules/core-java-collections-3/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
- [Differences Between Collection.clear() and Collection.removeAll()](https://www.baeldung.com/java-collection-clear-vs-removeall)
1010
- [Performance of contains() in a HashSet vs ArrayList](https://www.baeldung.com/java-hashset-arraylist-contains-performance)
1111
- [Fail-Safe Iterator vs Fail-Fast Iterator](https://www.baeldung.com/java-fail-safe-vs-fail-fast-iterator)
12+
- [Quick Guide to the Java Stack](https://www.baeldung.com/java-stack)

core-java-modules/core-java/src/test/java/com/baeldung/stack/StackUnitTest.java renamed to core-java-modules/core-java-collections-3/src/test/java/com/baeldung/collections/stack/StackUnitTest.java

File renamed without changes.

core-java-modules/core-java-console/src/test/java/com/baeldung/asciiart/AsciiArtIntegrationTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,5 @@ public void givenTextWithAsciiCharacterAndSettings_shouldPrintAsciiArt() {
1414
Settings settings = asciiArt.new Settings(new Font("SansSerif", Font.BOLD, 24), text.length() * 30, 30); // 30 pixel width per character
1515

1616
asciiArt.drawString(text, "*", settings);
17-
18-
throw new NullPointerException();
1917
}
20-
2118
}

core-java-modules/core-java-date-operations-2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ This module contains articles about date operations in Java.
88
- [Converting Java Date to OffsetDateTime](https://www.baeldung.com/java-convert-date-to-offsetdatetime)
99
- [How to Set the JVM Time Zone](https://www.baeldung.com/java-jvm-time-zone)
1010
- [How to determine day of week by passing specific date in Java?](https://www.baeldung.com/java-get-day-of-week)
11+
- [Finding Leap Years in Java](https://www.baeldung.com/java-leap-year)
1112
- [[<-- Prev]](/core-java-modules/core-java-date-operations-1)

core-java-modules/core-java/src/test/java/com/baeldung/leapyear/LeapYearUnitTest.java renamed to core-java-modules/core-java-date-operations-2/src/test/java/com/baeldung/leapyear/LeapYearUnitTest.java

File renamed without changes.

core-java-modules/core-java-jvm/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ This module contains articles about working with the Java Virtual Machine (JVM).
1212
- [Guide to System.gc()](https://www.baeldung.com/java-system-gc)
1313
- [Runtime.getRuntime().halt() vs System.exit() in Java](https://www.baeldung.com/java-runtime-halt-vs-system-exit)
1414
- [Adding Shutdown Hooks for JVM Applications](https://www.baeldung.com/jvm-shutdown-hooks)
15+
- [How to Get the Size of an Object in Java](http://www.baeldung.com/java-size-of-object)

core-java-modules/core-java/src/main/java/com/baeldung/objectsize/InstrumentationAgent.java renamed to core-java-modules/core-java-jvm/src/main/java/com/baeldung/objectsize/InstrumentationAgent.java

File renamed without changes.

core-java-modules/core-java/src/main/java/com/baeldung/objectsize/InstrumentationExample.java renamed to core-java-modules/core-java-jvm/src/main/java/com/baeldung/objectsize/InstrumentationExample.java

File renamed without changes.

core-java-modules/core-java/src/main/java/com/baeldung/objectsize/MANIFEST.MF renamed to core-java-modules/core-java-jvm/src/main/java/com/baeldung/objectsize/MANIFEST.MF

File renamed without changes.

core-java-modules/core-java-reflection/README.MD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
- [Changing Annotation Parameters At Runtime](http://www.baeldung.com/java-reflection-change-annotation-params)
99
- [Dynamic Proxies in Java](http://www.baeldung.com/java-dynamic-proxies)
1010
- [What Causes java.lang.reflect.InvocationTargetException?](https://www.baeldung.com/java-lang-reflect-invocationtargetexception)
11+
- [How to Find all Getters Returning Null](http://www.baeldung.com/java-getters-returning-null)
12+
- [How to Get a Name of a Method Being Executed?](http://www.baeldung.com/java-name-of-executing-method)

0 commit comments

Comments
 (0)