summaryrefslogtreecommitdiffstats
path: root/qadevOOo
Commit message (Collapse)AuthorAgeFilesLines
* qadevOOo: use String.length()==0 instead of String.equals(empty string)rbuj2014-09-114-5/+5
| | | | | | | Change-Id: I5cdd1fb4fe77c7fc9614f2a6de8995d98d60b551 Reviewed-on: https://gerrit.libreoffice.org/11368 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* Typo: (N|n)ormaly->(N|n)ormallyJulien Nabet2014-09-101-1/+1
| | | | Change-Id: I96d081f394b0b62d99ec1034bf5e99da9aedd9d9
* qadevOOo: Convert a primitive type into a stringrbuj2014-09-101-2/+2
| | | | | | | Change-Id: I1a840346e75a3d7dd0de761660a0ea95c7ee034b Reviewed-on: https://gerrit.libreoffice.org/11370 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* qadevOOo: Number Parsingrbuj2014-09-103-6/+6
| | | | | | | Change-Id: I284a1b2bcb61695b74ec51bb46cbb683abf83449 Reviewed-on: https://gerrit.libreoffice.org/11369 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* qadevOOo: use a character literalrbuj2014-09-1016-44/+44
| | | | | | | Change-Id: I6d3e592de64c63e66bb788b112e188ef217e7bf7 Reviewed-on: https://gerrit.libreoffice.org/11367 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* qadevOOo: use System.arraycopyrbuj2014-09-101-4/+1
| | | | | | | Change-Id: Ibbac337b481e138ff9bfaa9d350b52e368ba5f2b Reviewed-on: https://gerrit.libreoffice.org/11355 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* qadevOOo: reuse the value of entryName.indexOf(Left Parenthesis)rbuj2014-09-081-3/+4
| | | | | | | Change-Id: I1950275af2a063db74fef326ac0dd4e555e5170d Reviewed-on: https://gerrit.libreoffice.org/11323 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* qadevOOo: remove import from the same packagerbuj2014-09-0814-42/+0
| | | | | | | Change-Id: Id12bece6f1bba0591c3b311553df3fecec40e524 Reviewed-on: https://gerrit.libreoffice.org/11324 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* qadevOOo: All classes in the java.lang package are imported by defaultrbuj2014-09-082-3/+0
| | | | | | | Change-Id: I10f87af6e8128354bfca3587dbd390e5d41f5ce7 Reviewed-on: https://gerrit.libreoffice.org/11325 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* java: remove unnecessary constructor declarationsNoel Grandin2014-08-2014-59/+0
| | | | | | | in the absence of any other constructors, the compiler will automatically generate a public no-arg constructor Change-Id: I70eca507cd8e16e33580b3398d41d70690bc2909
* java: remove modifiers implied by the contextNoel Grandin2014-08-2029-157/+145
| | | | | | found by PMD Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
* java: remove unnecessary return statementsNoel Grandin2014-08-2017-54/+0
| | | | | | found by PMD Change-Id: I3d150421948d17eaed34fac2b1a212da34288d1a
* java: avoid if..else when returning boolean valuesNoel Grandin2014-08-201-9/+2
| | | | Change-Id: Iab52762a9abfe8735223372b09638ce9d8d44318
* java: avoid unnecessary comparisons in boolean expressionsNoel Grandin2014-08-2025-45/+45
| | | | | | i.e. stuff like "x == true" Change-Id: Ib82a4a30e736df392405332fa197b588482cffcf
* java: Avoid naming non-fields with the prefix m_Noel Grandin2014-08-202-7/+7
| | | | | | found by PMD Change-Id: I5955cfc9c4d777496a2e8e4b2c422a51764a8bc1
* java: no need to instantiate String objects directlyNoel Grandin2014-08-191-1/+1
| | | | Change-Id: I7610774c94bf673ed3b574ffce04c4ee6ca93c03
* java: use 'Byte.valueOf' instead of 'new Byte'Noel Grandin2014-08-1914-15/+15
| | | | Change-Id: Ia99765a6226317ee41ffb02a1b0dd7e6fd944a90
* java: use 'Short.valueOf' instead of 'new Short'Noel Grandin2014-08-1947-82/+82
| | | | Change-Id: Icef19ef61ee0af2dd3bda527263934006271f219
* java: use 'Long.valueOf' instead of 'new Long'Noel Grandin2014-08-193-3/+3
| | | | Change-Id: If4fff3dd37326fbcdd01b743355a16591d71fa69
* java: use 'Integer.valueOf' instead of 'new Integer'Noel Grandin2014-08-19125-269/+269
| | | | Change-Id: Ia8befb8d69914ce971174fc5f2ffc0e2f506a940
* java: use Boolean.valueOf instead of instantiating Boolean objectsNoel Grandin2014-08-19101-163/+163
| | | | Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74
* java: classes in java.lang package do not need to be fully qualifiedNoel Grandin2014-08-1933-59/+59
| | | | Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
* java: remove unused methodsNoel Grandin2014-08-1916-1236/+0
| | | | Change-Id: Ibb905e6f3e7d92a0e558f1f6562e5b472cd2717b
* coverity#1132709 Uncaught exceptionCaolán McNamara2014-08-172-1/+21
| | | | Change-Id: If828f82e36d12ceca7e6392de5757a131c99462c
* coverity#1231674 Uncaught exceptionCaolán McNamara2014-08-171-1/+31
| | | | | | | | and coverity#1231675 Uncaught exception Change-Id: If0907f2048fc5e492d5b8b49388c3bfad542e5f7
* java: remove unused importsNoel Grandin2014-08-1412-34/+0
| | | | Change-Id: Ic60b30141fd1dc61acfb97b811aec680a2ab9c22
* simplify timing codeNoel Grandin2014-08-141-24/+4
| | | | Change-Id: I1ecbfc5183261e400349309924dbf059a32cb95f
* improve copmmentsNoel Grandin2014-08-141-6/+6
| | | | Change-Id: Ib55ec2f787177829a85a121afb1d3dff2ee7ab1f
* java: remove commented out codeNoel Grandin2014-08-1485-409/+44
| | | | Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
* remove usage of DOCPTH and CNCSTRNoel Grandin2014-08-1411-19/+17
| | | | | | from the java test code, this was legacy, just finishing the job Change-Id: I2475efcde561cf10b29ea956972cddc06ec5635e
* clean upo runner.lib.TestParametersNoel Grandin2014-08-145-125/+52
| | | | | | | | | | - remove unused fields - make all external code go through the get(XXX) methods instead of also using the default values - remove default values declarations and inline them, since they are now unnecessary. Change-Id: Idc875fbd133de90044647f3e3b1feb225d81a643
* clean up formattingNoel Grandin2014-08-141-34/+19
| | | | Change-Id: Ib81b58a6fbcd14a4902bd0650117c07f08088ad6
* remove dead java constantsNoel Grandin2014-08-131-7/+0
| | | | | | found by UCDetector Change-Id: I1f8f5ba4f3ab1a1ef134dd0988f913dab7501351
* make some java methods privateNoel Grandin2014-08-131-1/+1
| | | | | | found by UCDetector Change-Id: Ic2edbc85194731116aac34064238d11ef1926a98
* make some java fields privateNoel Grandin2014-08-131-1/+1
| | | | | | found by UCDetector Change-Id: Ib4cf18be134c3177cb123191e963bb43b7e6de93
* java: remove dead methodsNoel Grandin2014-08-1343-2296/+60
| | | | | | found by UCDetector Change-Id: I219caa8e680dba5a395541a778df6144841c4dde
* java: remove unused fieldsNoel Grandin2014-08-1313-88/+22
| | | | | | found by UCDetector Change-Id: I4a7c56a9918054c23469de5680658e7b501f0165
* java: reduce scope, make some methods privateNoel Grandin2014-08-1358-199/+199
| | | | | | found by UCDetector Change-Id: Ib1425edde146193a65c242dc159b7e3fbf0e4a2e
* java: reduce scope, make member classes privateNoel Grandin2014-08-132-3/+3
| | | | | | found by UCDetector Change-Id: Ief32d078090102b14b60b35fc36542f8d4fb252b
* java: reduce scope, make fields privateNoel Grandin2014-08-1349-168/+168
| | | | | | found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
* java: reduce scope, make constructors privateNoel Grandin2014-08-138-12/+12
| | | | | | found by UCDetector Change-Id: If05277fd2fe77ceabb4c7c87aeb8569e3406102d
* java: reduce scope, make constants privateNoel Grandin2014-08-125-25/+25
| | | | | | found by UCDetector Change-Id: Ide9975e361ed17ac8cdcbe67ba74c563a9392d57
* java: return value of trim() ignoredNoel Grandin2014-08-122-2/+0
| | | | Change-Id: If4cd3eb3e6db0c095796b0ff018162e855afa38c
* java: fix broken javadoc tagsNoel Grandin2014-08-124-4/+0
| | | | Change-Id: I43d25ba49b758739ee8dc891b0db3e527004ec8b
* java: remove useless javadoc tagsNoel Grandin2014-08-1229-132/+1
| | | | | | that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1
* java: add @Override annotation to overriding methodsNoel Grandin2014-08-12968-6/+2216
| | | | Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
* fdo#82151 finish fixupLionel Elie Mamane2014-08-112-19/+133
| | | | | | Fix the UnoApi test, and give ORowSetDataColumn::getFastPropertyValue the reasonable behaviour. Change-Id: I68cc1221b6772e3036c78b8234b1d8b248d4d673
* java: remove unused parametersNoel Grandin2014-08-1119-35/+29
| | | | Change-Id: Ifc44c51ddbd21fabaad686bc3d38e2dab54d97aa
* java: remove unused parametersNoel Grandin2014-08-1191-163/+112
| | | | Change-Id: I47c618117e079bb2ef90d92c449c8166ea957fa5
* java: remove exceptions from throws clauses that are notNoel Grandin2014-08-0819-110/+33
| | | | | | .. actually thrown Change-Id: Ia326ac7f82e11b948ed0f34e20908a96e7adcd10