All pastes #2047846 Raw Edit

Untitled

public text v1 · immutable
#2047846 ·published 2011-04-18 16:59 UTC
rendered paste body
    private boolean isApproved(DirectoryHandle dir) {
		try {
			if (dir.getPluginMetaData(Approve.APPROVE) == true) {
				return true;
			}
		} catch (FileNotFoundException e) {
			// Dir no longer exists (shouldn't happend) - ignore though
		} catch (KeyNotFoundException e) {
			// Key doesn't exist (Good) - ignore
		}
    	return false;
    }