We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a048b03 commit 76d2911Copy full SHA for 76d2911
src/com/goide/dlv/DlvDebugProcess.java
@@ -264,7 +264,7 @@ public void registerBreakpoint(@NotNull final XLineBreakpoint<DlvBreakpointPrope
264
if (breakpointPosition == null) return;
265
VirtualFile file = breakpointPosition.getFile();
266
int line = breakpointPosition.getLine();
267
- send(new DlvRequest.CreateBreakpoint(file.getCanonicalPath(), line + 1))
+ send(new DlvRequest.CreateBreakpoint(file.getPath(), line + 1))
268
.done(new Consumer<Breakpoint>() {
269
@Override
270
public void consume(@NotNull Breakpoint b) {
0 commit comments