Index: modules/jpda/src/main/native/jdwp/common/agent/core/AgentEventRequest.cpp =================================================================== --- modules/jpda/src/main/native/jdwp/common/agent/core/AgentEventRequest.cpp (revision 578140) +++ modules/jpda/src/main/native/jdwp/common/agent/core/AgentEventRequest.cpp (working copy) @@ -317,15 +317,11 @@ } } else { // currentCount == m_frameCount // check against line - if (m_size == JDWP_STEP_LINE && currentLine == m_lineNumber) { + if (m_size == JDWP_STEP_LINE && currentLine == m_lineNumber && currentLine != -1) { return false; } } - if (m_size == JDWP_STEP_LINE && currentLine == -1) { - return false; - } - m_frameCount = currentCount; m_lineNumber = currentLine;