1 package io.github.robertograham.rleparser.helper;
 2 
 3 public class RleFileHelper {
 4 
 5     private static final String COMMENT_STARTER = "#";
 6 
 7     public static boolean isCommentString(String rleLine) {
 8         return rleLine.startsWith(COMMENT_STARTER);
 9     }
10 }