1 11 package org.eclipse.core.internal.localstore; 12 13 import org.eclipse.core.runtime.IPath; 14 15 21 public class TestingSupport { 22 25 private TestingSupport() { 26 } 28 29 32 public static void accept(HistoryStore store, IPath path, IHistoryStoreVisitor visitor, boolean partialMatch) { 33 store.accept(path, visitor, partialMatch); 34 } 35 36 40 public static void removeGarbage(HistoryStore store) { 41 store.removeGarbage(); 42 } 43 } | Popular Tags |