]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/cache/StaticProvider.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / cache / StaticProvider.java
index cd0438435789930d2f0bda0e6aa7f090ba623a59..8f79894e03cf7280ee4b4b28e51df02413b0ada6 100644 (file)
@@ -1,32 +1,32 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.utils.datastructures.cache;\r
-\r
-public class StaticProvider<V> implements IProvider<V> {\r
-\r
-       private final V v;\r
-       \r
-       public static <V> IProvider<V> provide(V v)\r
-       {\r
-               return new StaticProvider<V>(v);\r
-       }\r
-       \r
-       public StaticProvider(V v) {\r
-               this.v = v;\r
-       }\r
-\r
-       @Override\r
-       public V get() throws ProvisionException {\r
-               return v;\r
-       }\r
-       \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.utils.datastructures.cache;
+
+public class StaticProvider<V> implements IProvider<V> {
+
+       private final V v;
+       
+       public static <V> IProvider<V> provide(V v)
+       {
+               return new StaticProvider<V>(v);
+       }
+       
+       public StaticProvider(V v) {
+               this.v = v;
+       }
+
+       @Override
+       public V get() throws ProvisionException {
+               return v;
+       }
+       
+}