summaryrefslogtreecommitdiff
path: root/sc/qa/complex
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-02-03 15:46:35 +0200
committerNoel Grandin <noel@peralex.com>2015-04-20 11:18:22 +0200
commit04cadb3191573dff59c79a7780a4139ed148f122 (patch)
tree036dabc9c084c2ee225aadaa2d82bad02a0c4278 /sc/qa/complex
parent14bc818895a5cc10054928b5cbb49eaff086e8f4 (diff)
java: remove some unused code
Change-Id: If1cdc67535b11d9309503b14ffad2aa3718661c6
Diffstat (limited to 'sc/qa/complex')
-rw-r--r--sc/qa/complex/dataPilot/_XDataPilotTable.java16
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;
- }
}