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 132456
Collapse All | Expand All

(-)a/debugger.jpda/src/org/netbeans/modules/debugger/jpda/models/LocalsTreeModel.java (+3 lines)
Lines 206-211 public class LocalsTreeModel implements Link Here
206
                    return new Object[] {};
206
                    return new Object[] {};
207
                }
207
                }
208
                List<Operation> operations = frame.getThread().getLastOperations();
208
                List<Operation> operations = frame.getThread().getLastOperations();
209
                if (operations == null) {
210
                    return new Object[] {};
211
                }
209
                List<Variable> lastOperationValues = new ArrayList<Variable>(operations.size());
212
                List<Variable> lastOperationValues = new ArrayList<Variable>(operations.size());
210
                for (int i = 0; i < operations.size(); i++) {
213
                for (int i = 0; i < operations.size(); i++) {
211
                    Variable ret = operations.get(i).getReturnValue();
214
                    Variable ret = operations.get(i).getReturnValue();

Return to bug 132456