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.
2 parents a048b03 + 76d2911 commit d4ac7fbCopy full SHA for d4ac7fb
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