()
| 18 | public class ManualGC { |
| 19 | |
| 20 | private static vtkIdTypeArray createSelection() { |
| 21 | vtkSelection sel = new vtkSelection(); |
| 22 | vtkSelectionNode node = new vtkSelectionNode(); |
| 23 | vtkIdTypeArray arr = new vtkIdTypeArray(); |
| 24 | node.SetSelectionList(arr); |
| 25 | sel.AddNode(node); |
| 26 | return arr; |
| 27 | } |
| 28 | |
| 29 | public static void main(String[] args) { |
| 30 | try { |
no test coverage detected