]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural.synchronization.client/src/org/simantics/structural/synchronization/internal/Policy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural.synchronization.client / src / org / simantics / structural / synchronization / internal / Policy.java
index 93aa38758960ad2991e1bb5f70492375ce1ccb94..ad9f6468c2309b2b9b422d95deaa424ef67e1dad 100644 (file)
@@ -1,54 +1,54 @@
-package org.simantics.structural.synchronization.internal;\r
-\r
-import org.eclipse.core.runtime.ILog;\r
-import org.eclipse.core.runtime.IStatus;\r
-import org.eclipse.core.runtime.Platform;\r
-import org.eclipse.core.runtime.Status;\r
-import org.osgi.framework.Bundle;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public final class Policy {\r
-\r
-       public static final String PLUGIN_ID = "org.simantics.structural.synchronization";\r
-\r
-       //public static boolean TRACE_EVENTS = false;\r
-\r
-       static {\r
-               //String sTrue = Boolean.TRUE.toString();\r
-               //DEBUG_... = sTrue.equalsIgnoreCase(Platform.getDebugOption(PLUGIN_ID + "/debug/synchronization/...")); //$NON-NLS-1$\r
-       }\r
-\r
-       public static ILog getLog() {\r
-               Bundle b = Platform.getBundle(PLUGIN_ID);\r
-               if (b != null)\r
-                       return Platform.getLog(b);\r
-               throw new IllegalStateException("bundle " + PLUGIN_ID + " not resolved");\r
-       }\r
-\r
-       public static void log(IStatus status) {\r
-               getLog().log(status);\r
-       }\r
-\r
-       public static void log(int severity, String message, Throwable t) {\r
-               getLog().log(new Status(severity, PLUGIN_ID, message, t));\r
-       }\r
-\r
-       public static void logError(String message, Throwable t) {\r
-               log(IStatus.ERROR, message, t);\r
-       }\r
-\r
-       public static void logError(Throwable t) {\r
-               logError(t.getMessage(), t);\r
-       }\r
-\r
-       public static void logWarning(String message, Throwable t) {\r
-               log(IStatus.WARNING, message, t);\r
-       }\r
-\r
-       public static void logWarning(Throwable t) {\r
-               logWarning(t.getMessage(), t);\r
-       }\r
-\r
+package org.simantics.structural.synchronization.internal;
+
+import org.eclipse.core.runtime.ILog;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.core.runtime.Status;
+import org.osgi.framework.Bundle;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public final class Policy {
+
+       public static final String PLUGIN_ID = "org.simantics.structural.synchronization";
+
+       //public static boolean TRACE_EVENTS = false;
+
+       static {
+               //String sTrue = Boolean.TRUE.toString();
+               //DEBUG_... = sTrue.equalsIgnoreCase(Platform.getDebugOption(PLUGIN_ID + "/debug/synchronization/...")); //$NON-NLS-1$
+       }
+
+       public static ILog getLog() {
+               Bundle b = Platform.getBundle(PLUGIN_ID);
+               if (b != null)
+                       return Platform.getLog(b);
+               throw new IllegalStateException("bundle " + PLUGIN_ID + " not resolved");
+       }
+
+       public static void log(IStatus status) {
+               getLog().log(status);
+       }
+
+       public static void log(int severity, String message, Throwable t) {
+               getLog().log(new Status(severity, PLUGIN_ID, message, t));
+       }
+
+       public static void logError(String message, Throwable t) {
+               log(IStatus.ERROR, message, t);
+       }
+
+       public static void logError(Throwable t) {
+               logError(t.getMessage(), t);
+       }
+
+       public static void logWarning(String message, Throwable t) {
+               log(IStatus.WARNING, message, t);
+       }
+
+       public static void logWarning(Throwable t) {
+               logWarning(t.getMessage(), t);
+       }
+
 }
\ No newline at end of file