Skip to content

Commit

Permalink
ICU-21957 Change the internal/deprecated javadoc tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mihnita authored and sven-oly committed Sep 22, 2022
1 parent 8f5529f commit 123e5c1
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* Very-very rough implementation of FormattedValue, packaging a string.
* Expect it to change.
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
public class PlainStringFormattedValue implements FormattedValue {
Expand All @@ -26,8 +26,8 @@ public class PlainStringFormattedValue implements FormattedValue {
*
* @param value the string value to store
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
public PlainStringFormattedValue(String value) {
Expand All @@ -40,8 +40,8 @@ public PlainStringFormattedValue(String value) {
/**
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand All @@ -52,8 +52,8 @@ public int length() {
/**
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand All @@ -64,8 +64,8 @@ public char charAt(int index) {
/**
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand All @@ -76,8 +76,8 @@ public CharSequence subSequence(int start, int end) {
/**
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand All @@ -95,8 +95,8 @@ public <A extends Appendable> A appendTo(A appendable) {
*
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand All @@ -109,8 +109,8 @@ public boolean nextPosition(ConstrainedFieldPosition cfpos) {
*
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand All @@ -121,8 +121,8 @@ public AttributedCharacterIterator toCharacterIterator() {
/**
* {@inheritDoc}
*
* @internal ICU 72 technology preview. Visible For Testing.
* @deprecated This API is for technology preview only.
* @internal Visible For Testing.
* @deprecated This API is for unit testing only.
*/
@Deprecated
@Override
Expand Down

1 comment on commit 123e5c1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 123e5c1 Previous: 8f5529f Ratio
TestCharsetDecoderICU 0.9771209276845932 ns/iter 0.40949092490083316 ns/iter 2.39

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.