-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8271959: [lworld] Convert Optional and VBS classes to value class
Reviewed-by: erikj, mchung
- Loading branch information
Roger Riggs
committed
Mar 8, 2023
1 parent
0baf5d1
commit 4f71167
Showing
15 changed files
with
357 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# | ||
# Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. | ||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
# | ||
# This code is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License version 2 only, as | ||
# published by the Free Software Foundation. Oracle designates this | ||
# particular file as subject to the "Classpath" exception as provided | ||
# by Oracle in the LICENSE file that accompanied this code. | ||
# | ||
# This code is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
# version 2 for more details (a copy is included in the LICENSE file that | ||
# accompanied this code). | ||
# | ||
# You should have received a copy of the GNU General Public License version | ||
# 2 along with this work; if not, write to the Free Software Foundation, | ||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
# | ||
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
# | ||
|
||
################################################################################ | ||
# Generate the value class replacements for selected java.base source files | ||
|
||
java.base-VALUE_CLASS-REPLACEMENTS := \ | ||
java/util/Optional.java \ | ||
java/util/OptionalInt.java \ | ||
java/util/OptionalLong.java \ | ||
java/util/OptionalDouble.java \ | ||
java/time/LocalDate.java \ | ||
java/time/LocalDateTime.java \ | ||
java/time/LocalTime.java \ | ||
java/time/Duration.java \ | ||
java/time/Instant.java \ | ||
java/time/MonthDay.java \ | ||
java/time/ZonedDateTime.java \ | ||
java/time/OffsetDateTime.java \ | ||
java/time/OffsetTime.java \ | ||
java/time/YearMonth.java \ | ||
java/time/Year.java \ | ||
java/time/Period.java \ | ||
# | ||
|
||
java.base-VALUE-CLASS-FILES := \ | ||
$(foreach f, $(java.base-VALUE_CLASS-REPLACEMENTS), $(addprefix $(TOPDIR)/src/java.base/share/classes/, $(f))) | ||
|
||
$(eval $(call SetupTextFileProcessing, JAVA_BASE_VALUECLASS_REPLACEMENTS, \ | ||
SOURCE_FILES := $(java.base-VALUE-CLASS-FILES), \ | ||
SOURCE_BASE_DIR := $(TOPDIR)/src/java.base/share/classes, \ | ||
OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/gensrc-valueclasses/java.base/, \ | ||
REPLACEMENTS := \ | ||
public final class => public final value class, \ | ||
)) | ||
|
||
TARGETS += $(JAVA_BASE_VALUECLASS_REPLACEMENTS) |
Oops, something went wrong.