Skip to content

Commit 0181cc7

Browse files
committed
Fix indent
1 parent 05d8e8e commit 0181cc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/SparkCatalog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public boolean tableExists(Identifier ident) {
248248
// if the original load didn't work, try using the namespace as an identifier because
249249
// the original identifier may include a snapshot selector or may point to the changelog
250250
TableIdentifier namespaceAsIdent =
251-
buildIdentifier(namespaceToIdentifier(ident.namespace()));
251+
buildIdentifier(namespaceToIdentifier(ident.namespace()));
252252
Matcher tag = TAG.matcher(ident.name());
253253
if (tag.matches()) {
254254
org.apache.iceberg.Table table = icebergCatalog.loadTable(namespaceAsIdent);

0 commit comments

Comments
 (0)