Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for PropertiesWriter (0.08 seconds)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

         *
         * @param out the writer
         * @throws IOException if an error occurs
         */
        protected void saveLayout(Writer out, boolean typed) throws IOException {
            PropertiesWriter writer = new PropertiesWriter(out, typed);
            if (header != null) {
                for (String s : header) {
                    writer.writeln(s);
                }
            }
    
            for (String key : storage.keySet()) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 38.4K bytes
    - Click Count (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

         *
         * @param out the writer
         * @throws IOException if an error occurs
         */
        protected void saveLayout(Writer out, boolean typed) throws IOException {
            PropertiesWriter writer = new PropertiesWriter(out, typed);
            if (header != null) {
                for (String s : header) {
                    writer.writeln(s);
                }
            }
    
            for (String key : storage.keySet()) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 16 09:03:48 GMT 2025
    - 38.5K bytes
    - Click Count (0)
Back to Top