Skip to content

Commit 885f012

Browse files
authored
Move Scala syntax into pipeline.syntax package (#34)
1 parent a7fee6a commit 885f012

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Changed
9+
- Move Scala syntax into the pipeline.syntax package [#33](https://github.com/PDAL/java/issues/33)
810

911
## [2.1.4] - 2020-03-03
1012
### Added

core-scala/src/main/scala/io/pdal/pipeline/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
package io.pdal
1818

19-
package object pipeline extends json.Implicits with pipeline.Implicits with Serializable
19+
package object pipeline extends json.Implicits with syntax.Implicits with Serializable

core-scala/src/main/scala/io/pdal/pipeline/Implicits.scala renamed to core-scala/src/main/scala/io/pdal/pipeline/syntax/Implicits.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.pdal.pipeline
17+
package io.pdal.pipeline.syntax
1818

1919
import io.pdal._
2020
import org.locationtech.jts.geom.Coordinate
2121

22-
import java.util
2322
import java.nio.ByteBuffer
23+
import java.util
2424

2525
object Implicits extends Implicits with Serializable
2626

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
* Copyright 2017 Azavea
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package io.pdal.pipeline
18+
19+
package object syntax extends Implicits with Serializable

0 commit comments

Comments
 (0)