summaryrefslogtreecommitdiffstats
path: root/src/scratchpad
Commit message (Collapse)AuthorAgeFilesLines
...
* add forbidden api checks for non-Locale toLowerCase and toUpperCasePJ Fanning2017-11-211-4/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1815994 13f79535-47bb-0310-9956-ffa450edef68
* [bug-61792] some changes to avoid iterating over chars of StringsPJ Fanning2017-11-201-8/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1815871 13f79535-47bb-0310-9956-ffa450edef68
* Some JavaDoc adjustments, typos, IntelliJ warningsDominik Stadler2017-11-082-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814587 13f79535-47bb-0310-9956-ffa450edef68
* Fix some IntelliJ and JavaDoc warnings and avoid code-duplication and ↵Dominik Stadler2017-11-041-24/+17
| | | | | | | | duplicated test-methods Adjust tests slighlty, close resources git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814289 13f79535-47bb-0310-9956-ffa450edef68
* #61671 - XSLFSlide does not contain isHidden and setHidden like HSLFSlide doesAndreas Beeker2017-11-022-3/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814122 13f79535-47bb-0310-9956-ffa450edef68
* github-77: Remove the 'public' modifier to make fields package protected ↵Javen O'Neal2017-10-311-2/+4
| | | | | | (findbugs-MS_PKGPROTECT). Thanks to BruceKuiLiu for the PR. This closes #77 on github. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1813859 13f79535-47bb-0310-9956-ffa450edef68
* Remove more deprecated codePJ Fanning2017-10-231-184/+127
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1813102 13f79535-47bb-0310-9956-ffa450edef68
* Remove more deprecated codePJ Fanning2017-10-233-497/+400
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1813092 13f79535-47bb-0310-9956-ffa450edef68
* Remove more deprecated codePJ Fanning2017-10-235-130/+25
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1813085 13f79535-47bb-0310-9956-ffa450edef68
* Remove use of deprecated methodsPJ Fanning2017-10-222-12/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812911 13f79535-47bb-0310-9956-ffa450edef68
* Remove use of deprecated methodsPJ Fanning2017-10-222-7/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812907 13f79535-47bb-0310-9956-ffa450edef68
* Remove use of deprecated methodsPJ Fanning2017-10-224-20/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812901 13f79535-47bb-0310-9956-ffa450edef68
* replace "".equals(string) with string.isEmpty() to avoid null strings ↵Javen O'Neal2017-10-183-4/+4
| | | | | | silently evaluating to false; most code should probably check string for null if it is not already git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812476 13f79535-47bb-0310-9956-ffa450edef68
* for -> foreachJaven O'Neal2017-10-181-8/+8
| | | | | | | string.equals() -> string.isEmpty() or .equals(string) ArrayList -> List git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812461 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary StringBuilder [thanks to Kui Liu]. This close #80.PJ Fanning2017-10-151-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812232 13f79535-47bb-0310-9956-ffa450edef68
* Fix some findbugs-issues and apply some code-cleanup and apply some smaller ↵Dominik Stadler2017-10-1311-48/+28
| | | | | | | | pull requests. This closes #74, This closes #75, This closes #76 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812097 13f79535-47bb-0310-9956-ffa450edef68
* Remove "filling" in IntList as this has no effect whatsoever as far as I ↵Dominik Stadler2017-10-111-13/+13
| | | | | | | | could see Fix some IntelliJ warnings, missing JavaDoc, typos, Findbugs issues git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1811793 13f79535-47bb-0310-9956-ffa450edef68
* Bug 61586: Add test which shows that it works as expectedDominik Stadler2017-10-061-7/+89
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1811355 13f79535-47bb-0310-9956-ffa450edef68
* Adjust some unit-tests, use try-with-resource, enable test which works now, ...Dominik Stadler2017-09-261-26/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1809739 13f79535-47bb-0310-9956-ffa450edef68
* Bug 61349 -- bump limits on classes that caused regressions in Dominik's ↵Tim Allison2017-09-256-6/+6
| | | | | | regression corpus. Many thanks to Dominik Stadler for running the regression tests!!! git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1809623 13f79535-47bb-0310-9956-ffa450edef68
* Bug 61349 -- add more sanity checks when allocating byte[]Tim Allison2017-09-2176-102/+405
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1809169 13f79535-47bb-0310-9956-ffa450edef68
* tidy up some test codePJ Fanning2017-09-191-6/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808944 13f79535-47bb-0310-9956-ffa450edef68
* use non-deprecated versions of getCellTypePJ Fanning2017-09-182-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808741 13f79535-47bb-0310-9956-ffa450edef68
* change HyperLink getType to return HyperlinkTypePJ Fanning2017-09-181-20/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808737 13f79535-47bb-0310-9956-ffa450edef68
* update getCellType to return CellType enum instead of intPJ Fanning2017-09-183-10/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808700 13f79535-47bb-0310-9956-ffa450edef68
* Various code cleanups, "final" for static methods is useless, for-loops, ↵Dominik Stadler2017-09-177-37/+43
| | | | | | simplify boolean conditions, try-with-resource, javadoc, ... git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808620 13f79535-47bb-0310-9956-ffa450edef68
* Use Integer.compare() where possibleDominik Stadler2017-09-166-32/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808522 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary local variablesDominik Stadler2017-09-1636-97/+57
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808518 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary type arguments (Java 8)Dominik Stadler2017-09-16115-264/+264
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808516 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary type argumentsDominik Stadler2017-09-162-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808515 13f79535-47bb-0310-9956-ffa450edef68
* Suppress some warningsDominik Stadler2017-09-161-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808514 13f79535-47bb-0310-9956-ffa450edef68
* Remove unused importsDominik Stadler2017-09-166-9/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808513 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary casts and toString() callsDominik Stadler2017-09-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808512 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary semicolonsDominik Stadler2017-09-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808511 13f79535-47bb-0310-9956-ffa450edef68
* Remove unnecessary initialization of membersDominik Stadler2017-09-1642-69/+69
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808510 13f79535-47bb-0310-9956-ffa450edef68
* Let IntelliJ cleanup some code-warnings across the whole code-base: ↵Dominik Stadler2017-09-1614-20/+20
| | | | | | unnecessary casts git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808508 13f79535-47bb-0310-9956-ffa450edef68
* Add additional check as mentioned in bug 50060Dominik Stadler2017-09-161-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808503 13f79535-47bb-0310-9956-ffa450edef68
* remove some deprecated code slated for removal in 3.18PJ Fanning2017-09-151-13/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808455 13f79535-47bb-0310-9956-ffa450edef68
* remove some deprecated code slated for removal in 3.18PJ Fanning2017-09-143-20/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808400 13f79535-47bb-0310-9956-ffa450edef68
* Copy over and tweak PicturesSource from Apache TikaNick Burch2017-09-071-0/+136
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1807651 13f79535-47bb-0310-9956-ffa450edef68
* #61381 - PushbackInputStreams passed to ZipHelper may not hold 8 bytesAndreas Beeker2017-08-111-17/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1804854 13f79535-47bb-0310-9956-ffa450edef68
* #61363 - Unify escher shape id allocation Andreas Beeker2017-07-303-36/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1803483 13f79535-47bb-0310-9956-ffa450edef68
* 61337 -- try to convert assertions to exceptions. I left in the assertions ↵Tim Allison2017-07-261-23/+23
| | | | | | for the binary search components. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1803092 13f79535-47bb-0310-9956-ffa450edef68
* 61346 add more sanity checks before allocating byte arrays in emf/wmfTim Allison2017-07-267-23/+38
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1803041 13f79535-47bb-0310-9956-ffa450edef68
* 61338 -- avoid infinite loop triggered by fuzzed wmf fileTim Allison2017-07-252-8/+31
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1802997 13f79535-47bb-0310-9956-ffa450edef68
* Bug 61331 - Font group handling / common font interfaceAndreas Beeker2017-07-2320-691/+764
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1802741 13f79535-47bb-0310-9956-ffa450edef68
* Fix some IntelliJ warningsDominik Stadler2017-07-211-19/+28
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1802629 13f79535-47bb-0310-9956-ffa450edef68
* javadoc: replace invalid self enclosing elementsPJ Fanning2017-07-174-13/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1802110 13f79535-47bb-0310-9956-ffa450edef68
* bug 61294 -- cleaned up based on PJ Fanning's code review. Went with a ↵Tim Allison2017-07-143-7/+20
| | | | | | copy/paste from commons-io. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1801952 13f79535-47bb-0310-9956-ffa450edef68
* bug 61296: suggest de-duplication of purl dublin core namespace urlJaven O'Neal2017-07-141-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1801905 13f79535-47bb-0310-9956-ffa450edef68