On Wed, 21 Aug 2013, [email protected] wrote:
-import org.apache.poi.ddf.EscherBSERecord; -import org.apache.poi.ddf.EscherBoolProperty; -import org.apache.poi.ddf.EscherContainerRecord;
...
-import org.apache.poi.hssf.record.BOFRecord; -import org.apache.poi.hssf.record.BackupRecord; -import org.apache.poi.hssf.record.BookBoolRecord;
....
+import org.apache.poi.ddf.*; +import org.apache.poi.hssf.record.*;
I think we've generally tended to prefer explict imports to wildcard ones. It generally makes it easier to check where a file comes from, and avoids issues when we have multiple classes in different packages with the same name (eg Sheet)
Cheers Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
