Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NotNull (0.09 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java

            return this;
        }
    
        @Override
        public List<String> getModelIds() {
            return modelIds;
        }
    
        public DefaultModelBuildingResult addModelId(String modelId) {
            // Intentionally notNull because Super POM may not contain a modelId
            Objects.requireNonNull(modelId, "modelId cannot null");
    
            modelIds.add(modelId);
    
            return this;
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. .idea/misc.xml

              <item index="13" class="java.lang.String" itemvalue="org.eclipse.jdt.annotation.NonNull" />
              <item index="14" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
              <item index="15" class="java.lang.String" itemvalue="org.jspecify.annotations.NonNull" />
            </list>
          </value>
        </option>
      </component>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 06:19:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top