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

io.github.robertograham.rleparser.helper.RleFileHelper Maven / Gradle / Ivy

The newest version!
package io.github.robertograham.rleparser.helper;

public class RleFileHelper {

    private static final String COMMENT_STARTER = "#";

    public static boolean isComment(String rleLine) {
        return rleLine.startsWith(COMMENT_STARTER);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy