1 11 package org.eclipse.core.internal.indexing; 12 13 import java.io.*; 14 15 class Log { 16 17 20 static void delete(String storeName) { 21 new File(name(storeName)).delete(); 22 } 23 24 27 static boolean exists(String storeName) { 28 return new File(name(storeName)).exists(); 29 } 30 31 34 static String name(String storeName) { 35 return storeName + ".log"; } 37 } 38 | Popular Tags |