Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PropertiesReader (0.08 sec)

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

         *
         * @param in the reader to the properties file
         * @throws IOException if an error occurs
         */
        protected void loadLayout(Reader in, boolean maybeTyped) throws IOException {
            PropertiesReader reader = new PropertiesReader(in, maybeTyped);
            boolean hasProperty = false;
            while (reader.nextProperty()) {
                hasProperty = true;
                storage.put(reader.getPropertyName(), reader.getPropertyValue());
    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

         *
         * @param in the reader to the properties file
         * @throws IOException if an error occurs
         */
        protected void loadLayout(Reader in, boolean maybeTyped) throws IOException {
            PropertiesReader reader = new PropertiesReader(in, maybeTyped);
            boolean hasProperty = false;
            while (reader.nextProperty()) {
                hasProperty = true;
                storage.put(reader.getPropertyName(), reader.getPropertyValue());
    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