- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isCommentLine (0.05 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
* Tests whether a line is a comment, i.e. whether it starts with a comment * character. * * @param line the line * @return a flag if this is a comment line */ static boolean isCommentLine(String line) { String s = line.trim(); // blank lines are also treated as comment lines return s.isEmpty() || COMMENT_CHARS.indexOf(s.charAt(0)) >= 0; } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 09:03:48 UTC 2025 - 38.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
* Tests whether a line is a comment, i.e. whether it starts with a comment * character. * * @param line the line * @return a flag if this is a comment line */ static boolean isCommentLine(String line) { String s = line.trim(); // blank lines are also treated as comment lines return s.isEmpty() || COMMENT_CHARS.indexOf(s.charAt(0)) >= 0; } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 38.4K bytes - Viewed (0)