diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-04 14:52:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-04 15:32:01 +0200 |
commit | dd0bff54debd622361ece10eefa343740007139a (patch) | |
tree | 16b802938417c9ccb9769a1d58c6ec8150c3efad /qadevOOo/runner | |
parent | 9135a9fc4d8a02641e7ae57ed0037763c22b09f1 (diff) |
java: remove java 1.4 commented out code
Change-Id: I97b27b893ba516c6c29a46095f4ffc6fab838f1b
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r-- | qadevOOo/runner/helper/PropertyHelper.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/qadevOOo/runner/helper/PropertyHelper.java b/qadevOOo/runner/helper/PropertyHelper.java index 05d6a7d1c870..c48c58be3a9e 100644 --- a/qadevOOo/runner/helper/PropertyHelper.java +++ b/qadevOOo/runner/helper/PropertyHelper.java @@ -41,31 +41,6 @@ public class PropertyHelper else { aSaveProperties = _aPropertyList.toArray(new PropertyValue[_aPropertyList.size()]); - // old java 1.4 -// if (_aPropertyList.size() > 0) -// { -// aSaveProperties = new PropertyValue[_aPropertyList.size()]; -// for (int i = 0;i<_aPropertyList.size(); i++) -// { -// aSaveProperties[i] = (PropertyValue) _aPropertyList.get(i); -// } -// } -// else -// { -// aSaveProperties = new PropertyValue[0]; -// } - -// show properties? -// if (_aPropertyList.size() > 0) -// { -// // aSaveProperties = new PropertyValue[_aPropertyList.size()]; -// for (int i = 0;i<_aPropertyList.size(); i++) -// { -// PropertyValue aProp = (PropertyValue) _aPropertyList.get(i); -// showProperty(aProp); -// } -// } - } return aSaveProperties; } |