This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 202823
Collapse All | Expand All

(-)a/dlight.perfan/src/org/netbeans/modules/dlight/perfan/stack/impl/FunctionCallImpl.java (-1 / +5 lines)
Lines 226-232 Link Here
226
            }
226
            }
227
        }
227
        }
228
228
229
        FunctionImpl func = new FunctionImpl(m.group(1), m.group(2) != null ? m.group(2).hashCode() : (m.group(1) + lineNumber).hashCode());
229
        final long funcRef = m.group(2) != null 
230
                ? (m.group(1) + m.group(2)).hashCode() 
231
                : (m.group(1) + lineNumber).hashCode();
232
        
233
        FunctionImpl func = new FunctionImpl(m.group(1), funcRef);
230
234
231
        FunctionCallImpl call = new FunctionCallImpl(func, lineNumber, new HashMap<FunctionMetric, Object>());
235
        FunctionCallImpl call = new FunctionCallImpl(func, lineNumber, new HashMap<FunctionMetric, Object>());
232
236

Return to bug 202823