Skip to content

Commit

Permalink
Removed poi-ooxml dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Supriya Miriyala committed Oct 17, 2024
1 parent 01c010d commit 6767e2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 1 addition & 6 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.factset.protobuf</groupId>
<artifactId>stachextensions</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>

<licenses>
<license>
Expand Down Expand Up @@ -139,11 +139,6 @@
</build>

<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
import com.factset.protobuf.stach.table.SeriesDefinitionProto;
import com.google.protobuf.Duration;
import com.google.protobuf.Timestamp;
import org.apache.poi.ss.formula.eval.NotImplementedException;

import java.math.BigDecimal;
import java.util.List;

Expand Down Expand Up @@ -70,7 +68,7 @@ public static Object getValueHelper(SeriesDataProto.SeriesData seriesData, DataT
Timestamp value = seriesData.getTimestampArray().getValues(index);
return NullValues.TIMESTAMP.equals(value) ? nullFormat : value;
} else {
throw new NotImplementedException(dataType + " is not implemented");
throw new UnsupportedOperationException(dataType + " is not implemented");
}
}
}

0 comments on commit 6767e2c

Please sign in to comment.