]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/internal/registry/Entry.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.reflection / src / org / simantics / scl / reflection / internal / registry / Entry.java
old mode 100755 (executable)
new mode 100644 (file)
index bf8cb2e..14f08bc
@@ -1,21 +1,21 @@
-package org.simantics.scl.reflection.internal.registry;\r
-\r
-import org.osgi.framework.Bundle;\r
-\r
-class Entry {\r
-    final Bundle bundle;\r
-    final String name;\r
-    \r
-    public Entry(Bundle bundle, String name) {\r
-        this.bundle = bundle;\r
-        this.name = name;\r
-    }\r
-    \r
-    public Class<?> loadClass() {\r
-        try {\r
-            return bundle.loadClass(name);\r
-        } catch (ClassNotFoundException e) {\r
-            return null;\r
-        }   \r
-    }\r
+package org.simantics.scl.reflection.internal.registry;
+
+import org.osgi.framework.Bundle;
+
+class Entry {
+    final Bundle bundle;
+    final String name;
+    
+    public Entry(Bundle bundle, String name) {
+        this.bundle = bundle;
+        this.name = name;
+    }
+    
+    public Class<?> loadClass() {
+        try {
+            return bundle.loadClass(name);
+        } catch (ClassNotFoundException e) {
+            return null;
+        }   
+    }
 }
\ No newline at end of file