You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@griffin.apache.org by gu...@apache.org on 2018/07/04 04:29:27 UTC

incubator-griffin git commit: fix a bad practice, Empty interpolated string

Repository: incubator-griffin
Updated Branches:
  refs/heads/master ee367fb13 -> c7a7c670b


fix a bad practice, Empty interpolated string

String declared as interpolated but has no parameters: scala.StringContext.apply("cache after replace old df").s()

Author: Eugene <to...@163.com>

Closes #334 from toyboxman/bug1.


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/c7a7c670
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/c7a7c670
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/c7a7c670

Branch: refs/heads/master
Commit: c7a7c670b28bf170bf4778a83fa75319eae683cd
Parents: ee367fb
Author: Eugene <to...@163.com>
Authored: Wed Jul 4 12:29:20 2018 +0800
Committer: Lionel Liu <bh...@163.com>
Committed: Wed Jul 4 12:29:20 2018 +0800

----------------------------------------------------------------------
 .../org/apache/griffin/measure/context/DataFrameCache.scala      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/c7a7c670/measure/src/main/scala/org/apache/griffin/measure/context/DataFrameCache.scala
----------------------------------------------------------------------
diff --git a/measure/src/main/scala/org/apache/griffin/measure/context/DataFrameCache.scala b/measure/src/main/scala/org/apache/griffin/measure/context/DataFrameCache.scala
index 38227eb..4e8f4df 100644
--- a/measure/src/main/scala/org/apache/griffin/measure/context/DataFrameCache.scala
+++ b/measure/src/main/scala/org/apache/griffin/measure/context/DataFrameCache.scala
@@ -46,12 +46,12 @@ case class DataFrameCache() extends Loggable {
         trashDataFrame(odf)
         dataFrames += (name -> df)
         df.cache
-        info(s"cache after replace old df")
+        info("cache after replace old df")
       }
       case _ => {
         dataFrames += (name -> df)
         df.cache
-        info(s"cache after replace no old df")
+        info("cache after replace no old df")
       }
     }
   }