Lars Ivar Igesund schrieb:
* FTP adapter for the VFS by Lester L. Martin II
>

Why is the code full of duplicates (exit includes the failure case)?

scope(failure) {
        if(conn !is null)
                conn.close();
}
scope(exit) {
        if(conn !is null)
                conn.close();
}

Reply via email to