Skip to content

Commit 75ff2c5

Browse files
committed
remove cast
1 parent b637c6f commit 75ff2c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/processing/mode/android/SDKDownloader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ static public void extractFolder(File file, File newPath) throws IOException {
357357
// Process each entry
358358
while (zipFileEntries.hasMoreElements()) {
359359
// grab a zip file entry
360-
ZipEntry entry = (ZipEntry) zipFileEntries.nextElement();
360+
ZipEntry entry = zipFileEntries.nextElement();
361361
String currentEntry = entry.getName();
362362
File destFile = new File(newPath, currentEntry);
363363
//destFile = new File(newPath, destFile.getName());

0 commit comments

Comments
 (0)