summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/db
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-27 12:58:07 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:02:59 +0200
commit3be987460db9938977c9ff7ed59b7e43b64f430e (patch)
tree83a1c99d0f0f9e189acf6418eba7749ae6500902 /wizards/com/sun/star/wizards/db
parentdab59ab4bcadb14bef9ad7d185d58610fda22012 (diff)
Java cleanup - remove unnecessary casts
Change-Id: I9fc995d9b3f971b9b8869cb3f21ddf69b4f90e08
Diffstat (limited to 'wizards/com/sun/star/wizards/db')
-rw-r--r--wizards/com/sun/star/wizards/db/RecordParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/db/RecordParser.java b/wizards/com/sun/star/wizards/db/RecordParser.java
index 205409c8098d..2d97ddeb10a3 100644
--- a/wizards/com/sun/star/wizards/db/RecordParser.java
+++ b/wizards/com/sun/star/wizards/db/RecordParser.java
@@ -107,7 +107,7 @@ public class RecordParser extends QueryMetaData
Double DblValue;
if (bisDate)
{
- DblValue = new Double(xResultSetRow.getDouble(ColIndex) + (double) super.getNullDateCorrection());
+ DblValue = new Double(xResultSetRow.getDouble(ColIndex) + super.getNullDateCorrection());
}
else
{