()
| 82 | } |
| 83 | } |
| 84 | public void work() { |
| 85 | String acceleratorPath = getAcceleratorPath(documentPath); |
| 86 | if (!acceleratorValid(documentPath, acceleratorPath)) |
| 87 | acceleratorPath = null; |
| 88 | if (acceleratorPath != null) |
| 89 | doc = Document.openDocument(documentPath, acceleratorPath); |
| 90 | else |
| 91 | doc = Document.openDocument(documentPath); |
| 92 | needsPassword = doc.needsPassword(); |
| 93 | } |
| 94 | public void run() { |
| 95 | ViewerCore.this.doc = doc; |
| 96 | ViewerCore.this.acceleratorPath = acceleratorPath; |
nothing calls this directly
no test coverage detected