indexes: add more toString() to debug

GitOrigin-RevId: 24d6a9f9407a88957abe02ac7083d79fb630b120
This commit is contained in:
Dmitry Batkovich
2020-05-09 05:25:10 +00:00
committed by intellij-monorepo-bot
parent ba92f74a5f
commit 771dfe3f0d
2 changed files with 6 additions and 1 deletions
@@ -212,7 +212,7 @@ public class FileContentImpl extends IndexedFileImpl implements PsiDependentFile
@Override
public String toString() {
return myFileName;
return "FileContentImpl(" + getFileName() + ")";
}
public byte @Nullable [] getHash() {
@@ -56,4 +56,9 @@ public class IndexedFileImpl extends UserDataHolderBase implements IndexedFile {
public void setProject(@NotNull Project project) {
myProject = project;
}
@Override
public String toString() {
return "IndexedFileImpl(" + getFileName() + ")";
}
}