From 38374b1dd4f5d7aaef36ee480d92f8025b6ce18e Mon Sep 17 00:00:00 2001 From: "Anna.Kozlova" Date: Mon, 27 Nov 2017 15:03:38 +0100 Subject: [PATCH] restore text in toString --- .../intellij/testFramework/propertyBased/InsertLineComment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/testFramework/testSrc/com/intellij/testFramework/propertyBased/InsertLineComment.java b/platform/testFramework/testSrc/com/intellij/testFramework/propertyBased/InsertLineComment.java index 47c8306c7ca6..77b01f976e01 100644 --- a/platform/testFramework/testSrc/com/intellij/testFramework/propertyBased/InsertLineComment.java +++ b/platform/testFramework/testSrc/com/intellij/testFramework/propertyBased/InsertLineComment.java @@ -34,7 +34,7 @@ public class InsertLineComment extends ActionOnRange { @Override public String toString() { - return "LineComment{" + getVirtualFile().getPath() + " " + myInitialStart + " " + getCurrentRange() + "}"; + return "LineComment{" + getVirtualFile().getPath() + " " + getCurrentRange().getStartOffset() + " " + myToInsert + "}"; } @Override