You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hu...@apache.org on 2023/02/17 07:00:42 UTC

[iotdb] 06/16: fix typo

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

hui pushed a commit to branch lmh/modelManager
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit b0a8280f70b5990f2a70b4d7a9485607275e8157
Author: Minghui Liu <li...@foxmail.com>
AuthorDate: Thu Jan 5 20:34:26 2023 +0800

    fix typo
---
 .../main/java/org/apache/iotdb/confignode/persistence/ModelInfo.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/confignode/src/main/java/org/apache/iotdb/confignode/persistence/ModelInfo.java b/confignode/src/main/java/org/apache/iotdb/confignode/persistence/ModelInfo.java
index b973690853..a734aef299 100644
--- a/confignode/src/main/java/org/apache/iotdb/confignode/persistence/ModelInfo.java
+++ b/confignode/src/main/java/org/apache/iotdb/confignode/persistence/ModelInfo.java
@@ -61,11 +61,11 @@ public class ModelInfo implements SnapshotProcessor {
     this.lock = new ReentrantReadWriteLock();
   }
 
-  public ModelTableResp showModel(ShowModelPlan req) {
+  public ModelTableResp showModel(ShowModelPlan plan) {
     return null;
   }
 
-  public TrailTableResp showTrail(ShowTrailPlan req) {
+  public TrailTableResp showTrail(ShowTrailPlan plan) {
     return null;
   }