You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@iotdb.apache.org by "Xin Wang (Jira)" <ji...@apache.org> on 2020/02/15 08:03:00 UTC

[jira] [Created] (IOTDB-488) Static members shouldn't be accessed through class instances

Xin Wang created IOTDB-488:
------------------------------

             Summary: Static members shouldn't be accessed through class instances
                 Key: IOTDB-488
                 URL: https://issues.apache.org/jira/browse/IOTDB-488
             Project: Apache IoTDB
          Issue Type: Improvement
          Components: Core/Engine
            Reporter: Xin Wang


Static members shouldn't be accessed through class instances in

_org.apache.iotdb.db.qp.strategy.PhysicalGenerator_

 

Before:

_Path concatPath = filterPath.addPrefixPath(filterPath, prefix);_

After:

_Path concatPath = Path.addPrefixPath(filterPath, prefix);_

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)