Skip to content

Commit

Permalink
#5087 Remove eclipse collections for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDBlack committed May 9, 2018
1 parent d22f495 commit 04f6c4d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
6 changes: 0 additions & 6 deletions deeplearning4j-ui-parent/deeplearning4j-play/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,6 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections</artifactId>
<version>${eclipse.collections.version}</version>
</dependency>

<dependency>
<groupId>com.typesafe.play</groupId>
<artifactId>play-netty-server_2.11</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.deeplearning4j.ui.storage.sqlite;

import it.unimi.dsi.fastutil.longs.LongArrayList;
import lombok.NonNull;
import org.deeplearning4j.api.storage.*;
import org.eclipse.collections.impl.list.mutable.primitive.LongArrayList;
import org.nd4j.linalg.primitives.Pair;

import java.io.*;
Expand Down Expand Up @@ -574,7 +574,7 @@ public long[] getAllUpdateTimes(String sessionID, String typeID, String workerID
while (rs.next()) {
list.add(rs.getLong(1));
}
return list.toArray();
return list.elements();
} catch (SQLException e) {
throw new RuntimeException(e);
}
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@
<javax.ws.rs.version>2.0</javax.ws.rs.version>
<guava.version>20.0</guava.version>
<threadly.version>4.10.0</threadly.version>
<eclipse.collections.version>8.2.0</eclipse.collections.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
Expand Down

0 comments on commit 04f6c4d

Please sign in to comment.