[ByteCodeViewer] update ISE error message

Mentioned in #IJ-CR-166669

GitOrigin-RevId: a10984dd54e0bb8e15c0a68da0c3c9c293438e59
This commit is contained in:
Bartek Pacia
2025-06-25 13:28:59 +00:00
committed by intellij-monorepo-bot
parent 59039aad3b
commit cfe9374ae0
@@ -111,7 +111,7 @@ internal class BytecodeToolWindowPanel(
}
fun updateTextInEditor() {
if (classFile == null) throw IllegalStateException("Class file must not be null at this point")
if (classFile == null) throw IllegalStateException("Class file must not be null")
val byteCodeText = deserializeBytecode(classFile)
bytecodeEditor.document.putUserData(BYTECODE_WITH_DEBUG_INFO, byteCodeText) // include debug info for selection matching
runWriteAction {