Skip to content
This repository was archived by the owner on Aug 17, 2019. It is now read-only.

Commit 3bfb755

Browse files
committed
Remove duplicate license header
1 parent bfa9cec commit 3bfb755

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

Diff for: src/main/scala/com/ckkloverdos/convert/Converters.scala

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ class Converters(selector: ConverterSelectionStrategy) extends CanConvert {
5656
}
5757

5858
def convertValueToInt[S: Manifest](sourceValue: S): Maybe[Int] = convertValue(sourceValue, Manifest.Int)
59+
5960
def convertValueToLong[S: Manifest](sourceValue: S): Maybe[Long] = convertValue(sourceValue, Manifest.Long)
61+
6062
def convertValueToBoolean[S: Manifest](sourceValue: S): Maybe[Boolean] = convertValue(sourceValue, Manifest.Boolean)
6163
}

Diff for: src/main/scala/com/ckkloverdos/convert/select/ConverterSelectionStrategy.scala

-16
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,6 @@
1717
package com.ckkloverdos.convert
1818
package select
1919

20-
/*
21-
* Copyright 2011 Christos KK Loverdos
22-
*
23-
* Licensed under the Apache License, Version 2.0 (the "License");
24-
* you may not use this file except in compliance with the License.
25-
* You may obtain a copy of the License at
26-
*
27-
* http://www.apache.org/licenses/LICENSE-2.0
28-
*
29-
* Unless required by applicable law or agreed to in writing, software
30-
* distributed under the License is distributed on an "AS IS" BASIS,
31-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32-
* See the License for the specific language governing permissions and
33-
* limitations under the License.
34-
*/
35-
3620
import Converter.{AnyManifest, AnyConverter}
3721
import com.ckkloverdos.maybe.{NoVal, Just, Maybe}
3822

0 commit comments

Comments
 (0)