jerryshao commented on code in PR #7386: URL: https://github.com/apache/gravitino/pull/7386#discussion_r2162882485
########## catalogs/catalog-model/src/main/java/org/apache/gravitino/catalog/model/ModelPropertiesMetadata.java: ########## @@ -18,15 +18,28 @@ */ package org.apache.gravitino.catalog.model; -import java.util.Collections; +import static org.apache.gravitino.model.ModelVersion.PROPERTY_DEFAULT_URI_NAME; + +import com.google.common.collect.ImmutableMap; import java.util.Map; import org.apache.gravitino.connector.BasePropertiesMetadata; import org.apache.gravitino.connector.PropertyEntry; public class ModelPropertiesMetadata extends BasePropertiesMetadata { + private static final Map<String, PropertyEntry<?>> MODEL_PROPERTY_ENTRIES = + ImmutableMap.<String, PropertyEntry<?>>builder() + .put( + PROPERTY_DEFAULT_URI_NAME, + PropertyEntry.stringOptionalPropertyEntry( + PROPERTY_DEFAULT_URI_NAME, + "The default URI name for the versions of the model", + false /* immutable */, + null, + false /* hidden */)) + .build();; Review Comment: Typo: there's one more ";". -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org