From 9b69568a3a1328b0dc3344837a322c984dd305e1 Mon Sep 17 00:00:00 2001 From: andreoss Date: Fri, 16 Oct 2020 17:36:30 +0300 Subject: [PATCH] (#1462) Remove todo --- src/main/java/org/cactoos/text/Lowered.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/org/cactoos/text/Lowered.java b/src/main/java/org/cactoos/text/Lowered.java index c931800b1c..3042faa07b 100644 --- a/src/main/java/org/cactoos/text/Lowered.java +++ b/src/main/java/org/cactoos/text/Lowered.java @@ -55,11 +55,6 @@ public Lowered(final Text text) { * Ctor. * @param text The text * @param locale The locale - * @todo #1287:30min Introduce `text.Mapped` that takes a `Text` and - * a `Func` from `String` to `String`. Add some tests (included for - * `equals`). Once it is done, replace the code below by the use of - * `text.Mapped`. Do the same for all the one-liner mapping of the - * `text` package (e.g., `Upper`, `Trimmed`). */ public Lowered(final Text text, final Locale locale) { super(new Mapped(str -> str.toLowerCase(locale), text));