From 45b8a5d399ae068831453e82f6f485116c29759e Mon Sep 17 00:00:00 2001 From: Joyal K Augustine <60473591+augustinejoyal@users.noreply.github.com> Date: Tue, 13 Apr 2021 08:51:20 +0530 Subject: [PATCH] BAEL-4199 : package-info-java (#10637) * BAEL-4199 : package-info-java * BAEL-4199: Removing entry from readme * BAEL-4199: Addressing review comments --- .../com/baeldung/finalkeyword/package-info.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 core-java-modules/core-java-lang-4/src/main/java/com/baeldung/finalkeyword/package-info.java diff --git a/core-java-modules/core-java-lang-4/src/main/java/com/baeldung/finalkeyword/package-info.java b/core-java-modules/core-java-lang-4/src/main/java/com/baeldung/finalkeyword/package-info.java new file mode 100644 index 0000000000..fd1e3cf8d8 --- /dev/null +++ b/core-java-modules/core-java-lang-4/src/main/java/com/baeldung/finalkeyword/package-info.java @@ -0,0 +1,13 @@ +/** +* This module is about impact of the final keyword on performance + *
+ * This module explores if there are any performance benefits from + * using the final keyword in our code. This module examines the performance + * implications of using final on a variable, method, and class level. + *
+* +* @since 1.0 +* @author baeldung +* @version 1.1 +*/ +package com.baeldung.finalkeyword;