Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-maynard committed Aug 9, 2024
1 parent 8475af8 commit bedf9a9
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@
* different Polaris components.
*/
public class PolarisCatalogHelpers {
<<<<<<< HEAD
private static final Logger LOGGER = LoggerFactory.getLogger(PolarisCatalogHelpers.class);

=======
>>>>>>> be5c29af3332e2a77a3432661626cd3f443d5f4a
/** Not intended for instantiation. */
private PolarisCatalogHelpers() {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@
* Catalog} model to the persistent entity model.
*/
public class CatalogEntity extends PolarisEntity {
<<<<<<< HEAD
private static final Logger LOGGER = LoggerFactory.getLogger(CatalogEntity.class);

public static final long ROOT_CATALOG_ID = 0;
=======
>>>>>>> be5c29af3332e2a77a3432661626cd3f443d5f4a
public static final String CATALOG_TYPE_PROPERTY = "catalogType";

// Specifies the object-store base location used for all Table file locations under the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
* id and name resolution mechanics around PolarisEntities.
*/
public class PolarisEntityManager {
<<<<<<< HEAD
private static final Logger LOGGER = LoggerFactory.getLogger(PolarisEntityManager.class);

=======
>>>>>>> be5c29af3332e2a77a3432661626cd3f443d5f4a
private final PolarisMetaStoreManager metaStoreManager;
private final Supplier<PolarisMetaStoreSession> sessionSupplier;
private final EntityCache entityCache;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,7 @@ public Catalog createCallContextCatalog(
String catalogFile = Paths.get(realmDir, catalogName).toString();

// Ensure parent directories of metastore-state base directory exists.
<<<<<<< HEAD
LOGGER.info("Creating metastore state directory: " + realmDir);
=======
LOG.info("Creating metastore state directory: {}", realmDir);
>>>>>>> be5c29af3332e2a77a3432661626cd3f443d5f4a
LOGGER.info("Creating metastore state directory: {}", realmDir);
try {
Path result = Files.createDirectories(FileSystems.getDefault().getPath(realmDir));
} catch (IOException ioe) {
Expand Down

0 comments on commit bedf9a9

Please sign in to comment.