Hi, While I read the source code, I found a little bug in FtpletEnum class.
public boolean equals(Object obj) {
if(obj instanceof Ftplet) {
return m_type == ((FtpletEnum)obj).m_type;
}
return false;
}
If obj is instanceof Ftplet, it can't be casted to FtpletEnum because they
are different interfaces. I think this is a mistake.
Thanks,
Kwang Yul Seo
