1 11 package org.eclipse.team.internal.ccvs.ssh; 12 13 14 15 import org.eclipse.core.runtime.Platform; 16 17 public class Policy { 18 public static boolean DEBUG_SSH_PROTOCOL = false; 20 21 static { 22 if (SSHPlugin.getPlugin().isDebugging()) { 24 DEBUG_SSH_PROTOCOL = "true".equalsIgnoreCase(Platform.getDebugOption(SSHPlugin.ID + "/ssh_protocol")); } 26 } 27 28 } 29 | Popular Tags |