mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
indexes: add more toString() to debug
GitOrigin-RevId: 24d6a9f9407a88957abe02ac7083d79fb630b120
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ba92f74a5f
commit
771dfe3f0d
@@ -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() + ")";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user