瀏覽代碼

eclipse: unnecessary cast

tags/V162DEV_M1
aclement 16 年之前
父節點
當前提交
c16372339b
共有 1 個檔案被更改,包括 1 行新增1 行删除
  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 查看文件

@@ -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…
取消
儲存