Dear Aspose-Team,
look at the test.doc document at the attachments. In the stylesheets we only have two stylesheets customized (default and Test kph). After saving this document with Aspose.Words for Java Version 16.6 we have more than the two stylesheets again. Is this a bug or can we supress this anyway?
We use this code for testing:
public class TestAspose
{
public static void main(String[] args)
{
try
{
new License().setLicense("C:/Aspose.Words.lic");
new Document("C:/test.doc").save("C:/test-saved.doc");
}
catch (Exception ex)
{
ex.printStackTrace(System.err);
}
}
}
Kind regards,
Jochen