gsmet / devoxx24-playground

A playground for our AI-infused bot
0 stars 0 forks source link

Any comments? #22

Closed geoand closed 2 weeks ago

geoand commented 2 weeks ago

This is my code:

public final class Strings {

    public static String sanitize(String value) {
        if (value == null) {
            return null;
        }

        return value.replace("---", "___");
    }
}

Is it good?

devoxx-24-ai-infused-bot[bot] commented 2 weeks ago

""