Skip to content

Commit a48187f

Browse files
handle null
1 parent 4633f9c commit a48187f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

luceedebug/src/main/java/luceedebug/coreinject/LuceeVm.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public boolean equals(Object vv) {
142142
&& serverAbsPath.equals(v.serverAbsPath)
143143
&& line == v.line
144144
&& id == v.id
145-
&& expr.equals(v.expr);
145+
&& (expr == null ? v.expr == null : expr.equals(v.expr));
146146
}
147147

148148
ReplayableCfBreakpointRequest(RawIdePath ideAbsPath, CanonicalServerAbsPath serverAbsPath, int line, DapBreakpointID id, String expr) {

0 commit comments

Comments
 (0)