diff options
author | Noel Grandin <noel@peralex.com> | 2015-02-03 15:46:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-20 11:18:22 +0200 |
commit | 04cadb3191573dff59c79a7780a4139ed148f122 (patch) | |
tree | 036dabc9c084c2ee225aadaa2d82bad02a0c4278 /sc/qa | |
parent | 14bc818895a5cc10054928b5cbb49eaff086e8f4 (diff) |
java: remove some unused code
Change-Id: If1cdc67535b11d9309503b14ffad2aa3718661c6
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/complex/dataPilot/_XDataPilotTable.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sc/qa/complex/dataPilot/_XDataPilotTable.java b/sc/qa/complex/dataPilot/_XDataPilotTable.java index bb68565f196e..1856413caa98 100644 --- a/sc/qa/complex/dataPilot/_XDataPilotTable.java +++ b/sc/qa/complex/dataPilot/_XDataPilotTable.java @@ -95,21 +95,5 @@ public class _XDataPilotTable { return bResult; } - /** - * Test sets new value of the cell obtained by object relation - * 'CELLFORCHANGE', and checks value of the cell obtained by object - * relation 'CELLFORCHECK'.<p> - * Has <b>OK</b> status if value of the cell obtained by object relation - * 'CELLFORCHECK' is changed. <p> - */ - public boolean _refresh(){ - xCellForChange.setValue(changeValue); - double oldData = xCellForCheck.getValue(); - oObj.refresh(); - double newData = xCellForCheck.getValue(); - System.out.println("Old data:" + oldData + "; new data:" + newData); - - return oldData != newData; - } } |