Skip to content

Commit

Permalink
ICU-22325 BRS74 ICU4J API signature file
Browse files Browse the repository at this point in the history
  • Loading branch information
yumaoka committed Oct 4, 2023
1 parent c587069 commit 1651e63
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion icu4j/APIChangeReport.html
Expand Up @@ -243,6 +243,6 @@ <h3>Package com.ibm.icu.util</h3>
</ul>

<hr/>
<p><i><font size="-1">Contents generated by ReportAPI tool on Thu Sep 21 10:51:41 PDT 2023<br/>© 2023 and later: Unicode, Inc. and others. License & terms of use: <a href="http:https://www.unicode.org/copyright.html">http:https://www.unicode.org/copyright.html</a></font></i></p>
<p><i><font size="-1">Contents generated by ReportAPI tool on Tue Oct 03 15:39:12 EDT 2023<br/>© 2023 and later: Unicode, Inc. and others. License & terms of use: <a href="http:https://www.unicode.org/copyright.html">http:https://www.unicode.org/copyright.html</a></font></i></p>
</body>
</html>
Expand Up @@ -355,6 +355,7 @@ public PersonNameFormatter(Locale locale, String[] gnFirstPatterns, String[] snF
* @deprecated This API is for debugging only.
*/
@Override
@Deprecated
public String toString() {
return impl.toString();
}
Expand Down
9 changes: 5 additions & 4 deletions icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java
Expand Up @@ -2179,13 +2179,13 @@ protected final int internalGet(int field, int defaultValue) {
}

/**
* @internal
* @deprecated This API is ICU internal only.
* Use this function instead of internalGet(MONTH). The implementation
* check the timestamp of MONTH and ORDINAL_MONTH and use the
* one set later. The subclass should override it to conver the value of ORDINAL_MONTH
* to MONTH correctly if ORDINAL_MONTH has higher priority.
* @return the value for the given time field.
* @internal
* @deprecated This API is ICU internal only.
*/
@Deprecated
protected int internalGetMonth()
Expand All @@ -2197,16 +2197,17 @@ protected int internalGetMonth()
}

/**
* @internal
* @deprecated This API is ICU internal only.
* Use this function instead of internalGet(MONTH, defaultValue). The implementation
* check the timestamp of MONTH and ORDINAL_MONTH and use the
* one set later. The subclass should override it to conver the value of ORDINAL_MONTH
* to MONTH correctly if ORDINAL_MONTH has higher priority.
* @param defaultValue a default value used if the MONTH and
* ORDINAL_MONTH are both unset.
* @return the value for the MONTH.
* @internal
* @deprecated This API is ICU internal only.
*/
@Deprecated
protected int internalGetMonth(int defaultValue) {
if (resolveFields(MONTH_PRECEDENCE) == MONTH) {
return internalGet(MONTH, defaultValue);
Expand Down
Binary file removed icu4j/tools/build/icu4j64.api3.gz
Binary file not shown.
Binary file added icu4j/tools/build/icu4j74.api3.gz
Binary file not shown.

0 comments on commit 1651e63

Please sign in to comment.