You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2019/07/18 15:31:59 UTC

[flink] 01/06: [hotfix][table-common] Fix minor typos in ObjectIdentifier

This is an automated email from the ASF dual-hosted git repository.

twalthr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 3f62d5d78a3f792e3fb984ff88d38190dabad586
Author: Timo Walther <tw...@apache.org>
AuthorDate: Wed Jul 10 08:40:47 2019 +0200

    [hotfix][table-common] Fix minor typos in ObjectIdentifier
---
 .../java/org/apache/flink/table/catalog/ObjectIdentifier.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/ObjectIdentifier.java b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/ObjectIdentifier.java
index b791a70..6e2f9c7 100644
--- a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/ObjectIdentifier.java
+++ b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/ObjectIdentifier.java
@@ -33,15 +33,15 @@ import static org.apache.flink.table.utils.EncodingUtils.escapeIdentifier;
  * <p>While {@link ObjectPath} is used within the same catalog, instances of this class can be used
  * across catalogs.
  *
- * <p>Two objects are considered equal if they share the same type identifier in a stable session context.
+ * <p>Two objects are considered equal if they share the same object identifier in a stable session context.
  */
 public final class ObjectIdentifier implements Serializable {
 
-	private String catalogName;
+	private final String catalogName;
 
-	private String databaseName;
+	private final String databaseName;
 
-	private String objectName;
+	private final String objectName;
 
 	public static ObjectIdentifier of(String catalogName, String databaseName, String objectName) {
 		return new ObjectIdentifier(catalogName, databaseName, objectName);