Github user LosD commented on a diff in the pull request:
https://github.com/apache/metamodel/pull/49#discussion_r41101077
--- Diff:
excel/src/main/java/org/apache/metamodel/excel/ExcelDataContext.java ---
@@ -209,13 +205,13 @@ protected void onSchemaCacheRefreshed() {
return null;
}
- private SpreadsheetReaderDelegate
getSpreadsheetReaderDelegate(Ref<InputStream> inputStream)
+ private SpreadsheetReaderDelegate getSpreadsheetReaderDelegate()
throws MetaModelException {
if (_spreadsheetReaderDelegate == null) {
synchronized (this) {
if (_spreadsheetReaderDelegate == null) {
try {
- if
(POIXMLDocument.hasOOXMLHeader(inputStream.get())) {
+ if
(POIXMLDocument.hasOOXMLHeader(getInputStream())) {
--- End diff --
Wait, does that mean that your Java is doing like Travis? We're totally
doing this on your computer. If it's your old laptop, bring it! If it's the
Mac... I'd consider it a hardware issue :-P
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---