8241742: Remove the preview status for methods introduced for Text Blocks

Reviewed-by: psandoz, chegar, alanb
This commit is contained in:
Jim Laskey 2020-04-09 10:55:01 -03:00
parent 36f22938ed
commit d9bf934831
4 changed files with 7 additions and 13 deletions

View file

@ -2973,8 +2973,6 @@ public final class String
* @since 13
*
*/
@jdk.internal.PreviewFeature(feature=jdk.internal.PreviewFeature.Feature.TEXT_BLOCKS,
essentialAPI=true)
public String stripIndent() {
int length = length();
if (length == 0) {
@ -3107,8 +3105,6 @@ public final class String
*
* @since 13
*/
@jdk.internal.PreviewFeature(feature=jdk.internal.PreviewFeature.Feature.TEXT_BLOCKS,
essentialAPI=true)
public String translateEscapes() {
if (isEmpty()) {
return "";
@ -3369,8 +3365,6 @@ public final class String
* @since 13
*
*/
@jdk.internal.PreviewFeature(feature=jdk.internal.PreviewFeature.Feature.TEXT_BLOCKS,
essentialAPI=true)
public String formatted(Object... args) {
return new Formatter().format(this, args).toString();
}