Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseProperty (0.51 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

                while (!val.isEmpty() && Character.isWhitespace(val.charAt(0))) {
                    val = val.substring(1);
                }
                sb.append(val);
            }
            String[] property = PropertiesReader.parseProperty(sb.toString());
            this.layout.put(key, new Layout(commentLines, valueLines));
            return storage.put(key, property[1]);
        }
    
        public String put(String key, List<String> commentLines, String value) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 09:03:48 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

                while (!val.isEmpty() && Character.isWhitespace(val.charAt(0))) {
                    val = val.substring(1);
                }
                sb.append(val);
            }
            String[] property = PropertiesReader.parseProperty(sb.toString());
            this.layout.put(key, new Layout(commentLines, valueLines));
            return storage.put(key, property[1]);
        }
    
        public String put(String key, List<String> commentLines, String value) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 38.4K bytes
    - Viewed (0)
Back to top