Hi,
can you help me:
When I call method "document.hasRevision" like in following code for attached "doc" without licence they return "false" and that is ok, but when do with licenced Aspose.Words method return "true" and that is wrong. What is the problem?
public class HasRevisions {
@Test
public void hasRevisions() throws Exception {
String path = "/Affinia.doc";
Document document = new Document(path);
boolean hasRevisions = document.hasRevisions();
System.out.println(hasRevisions);
}
}