This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 255879
Collapse All | Expand All

(-)db.dataview/src/org/netbeans/modules/db/dataview/util/RandomAccessOutputStream.java (+5 lines)
Lines 54-59 Link Here
54
    }
54
    }
55
55
56
    @Override
56
    @Override
57
    public void write(byte[] b, int off, int len) throws IOException {
58
        raf.write(b, off, len);
59
    }
60
61
    @Override
57
    public void write(byte[] b) throws IOException {
62
    public void write(byte[] b) throws IOException {
58
        raf.write(b);
63
        raf.write(b);
59
    }
64
    }

Return to bug 255879