summaryrefslogtreecommitdiffstats
path: root/src/contrib
diff options
context:
space:
mode:
authorYegor Kozlov <yegor@apache.org>2009-04-11 14:15:27 +0000
committerYegor Kozlov <yegor@apache.org>2009-04-11 14:15:27 +0000
commit6299c25b80aa5b704c60c07a229dbb90ac8cc10d (patch)
tree939593089821b44efd782afef0ef442fcb5c0616 /src/contrib
parent7e32bc95627d3980aa187d11f187e1bbb99d7f46 (diff)
downloadpoi-6299c25b80aa5b704c60c07a229dbb90ac8cc10d.tar.gz
poi-6299c25b80aa5b704c60c07a229dbb90ac8cc10d.zip
removed unused imports of deprecated classes, fixed javadoc errors
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@764203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/contrib')
-rw-r--r--src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableModel.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableModel.java b/src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableModel.java
index 54c8d96362..c2f4bb31a0 100644
--- a/src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableModel.java
+++ b/src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableModel.java
@@ -61,7 +61,7 @@ public class SVTableModel extends AbstractTableModel {
HSSFRow r = st.getRow(row);
HSSFCell c = null;
if (r != null) {
- c = r.getCell((short)col);
+ c = r.getCell(col);
}
return c;
}