- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for stripLeadingAndTrailingQuotes (0.12 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CliUtils.java
/** * Various utilities, mostly to bridge "old" and "new" stuff, like Properties vs Maps, File vs Paths, etc. */ public final class CliUtils { private CliUtils() {} @Nonnull public static String stripLeadingAndTrailingQuotes(String str) { requireNonNull(str, "str"); final int length = str.length(); if (length > 1 && str.startsWith("\"") && str.endsWith("\"")
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 13 18:30:29 UTC 2025 - 5K bytes - Viewed (0)