aboutsummaryrefslogtreecommitdiffstats
path: root/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2020-01-10 23:13:20 +0000
committerPJ Fanning <fanningpj@apache.org>2020-01-10 23:13:20 +0000
commit2797d07486b036e5486f959b4db769b01320afee (patch)
treeba39b24f0af64287c39eb57307167caa86cb9b13 /src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java
parent12d49035c0d39bd19ac6cfb0d30de545f65a9b7f (diff)
downloadpoi-2797d07486b036e5486f959b4db769b01320afee.tar.gz
poi-2797d07486b036e5486f959b4db769b01320afee.zip
try to fix some jdk 14 build issues due to java.lang.Record causing existing POI Record classes to be ambiguous
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1872610 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java')
-rw-r--r--src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java b/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java
index 15209d3d76..3adbcd0a08 100644
--- a/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java
+++ b/src/integrationtest/org/apache/poi/stress/HSLFFileHandler.java
@@ -36,9 +36,9 @@ public class HSLFFileHandler extends SlideShowHandler {
assertNotNull(slide.getEmbeddedObjects());
assertNotNull(slide.getUnderlyingBytes());
assertNotNull(slide.getPictureData());
- Record[] records = slide.getRecords();
+ org.apache.poi.hssf.record.Record[] records = slide.getRecords();
assertNotNull(records);
- for(Record record : records) {
+ for(org.apache.poi.hssf.record.Record record : records) {
assertNotNull("Found a record which was null", record);
assertTrue(record.getRecordType() >= 0);
}