CTCV2/app/src/main/java/cutthecord/commands/commands/CmdLower.java

25 lines
466 B
Java

package cutthecord.commands.commands;
import androidx.annotation.Nullable;
import cutthecord.commands.CommandHandler;
import lanchon.dexpatcher.annotation.DexAdd;
@DexAdd
public class CmdLower extends CommandHandler.Command {
@DexAdd
@Override
public String handleCommand(String msg) {
return msg.toLowerCase();
}
@DexAdd
@Nullable
@Override
public String getPopupInfo() {
return "Makes text lowercase";
}
}