Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ROProperties (0.11 sec)

  1. src/mdo/java/ImmutableCollections.java

            return new Map1<>(key, value);
        }
    
        static Properties copy(Properties properties) {
            if (properties instanceof ROProperties) {
                return properties;
            }
            return new ROProperties(properties);
        }
    
        private static class List1<E> extends AbstractImmutableList<E> {
            private final E element;
    
            private List1(E element) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

            return new Map1<>(key, value);
        }
    
        static Properties copy(Properties properties) {
            if (properties instanceof ROProperties) {
                return properties;
            }
            return new ROProperties(properties);
        }
    
        private static class List1<E> extends AbstractImmutableList<E> {
            private final E element;
    
            private List1(E element) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top