All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hadii.stiff.text.DocCommentCharacterStrippedText Maven / Gradle / Ivy

The newest version!
package com.hadii.stiff.text;

final class DocCommentCharacterStrippedText implements Text {

    private final Text text;

    DocCommentCharacterStrippedText(Text text) {
        this.text = text;
    }

    @Override
    public String value() {
        return this.text.value()
            .replace("/*", "")
            .replace("*/", "")
            .replace("*", "");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy