Browse Source

eclipse: unnecessary cast

tags/V162DEV_M1
aclement 16 years ago
parent
commit
c16372339b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      ajde.core/testsrc/org/aspectj/ajde/core/tests/InpathTests.java

+ 1
- 1
ajde.core/testsrc/org/aspectj/ajde/core/tests/InpathTests.java View File

@@ -367,7 +367,7 @@ public class InpathTests extends AjdeCoreTestCase {
new JarInputStream(new java.io.FileInputStream(outjarFile));

ZipEntry entry;
while (null != (entry = (ZipEntry)outjar.getNextEntry())) {
while (null != (entry = outjar.getNextEntry())) {
String zipentryname = entry.getName();
if (zipentryname.equals(filename)) {
byte[] filedata = FileUtil.readAsByteArray(outjar);

Loading…
Cancel
Save