From 5e19ffd27490b680749d7b70143ec8eb3ce7ed90 Mon Sep 17 00:00:00 2001 From: Julien Date: Fri, 23 Nov 2018 15:30:14 +0100 Subject: [PATCH] Move Copyright to AstroLab Software --- build.sbt | 2 +- pyspark3d/__init__.py | 2 +- pyspark3d/checkers.py | 2 +- pyspark3d/converters.py | 2 +- pyspark3d/geometryObjects.py | 2 +- pyspark3d/pyspark3d_conf.py | 2 +- pyspark3d/repartitioning.py | 2 +- pyspark3d/visualisation.py | 2 +- setup.py | 2 +- src/main/scala/com/spark3d/Checkers.scala | 2 +- src/main/scala/com/spark3d/Partitioners.scala | 2 +- src/main/scala/com/spark3d/Repartitioning.scala | 2 +- src/main/scala/com/spark3d/geometryObjects/BoxEnvelope.scala | 2 +- src/main/scala/com/spark3d/geometryObjects/Point3D.scala | 2 +- src/main/scala/com/spark3d/geometryObjects/Shape3D.scala | 2 +- src/main/scala/com/spark3d/geometryObjects/ShellEnvelope.scala | 2 +- .../scala/com/spark3d/indexingMethods/HealpixIndexing.scala | 2 +- src/main/scala/com/spark3d/package.scala | 2 +- src/main/scala/com/spark3d/python/PythonClassTag.scala | 2 +- .../scala/com/spark3d/serialization/Spark3dRegistrator.scala | 2 +- .../scala/com/spark3d/spatialPartitioning/KeyPartitioner.scala | 2 +- src/main/scala/com/spark3d/spatialPartitioning/Octree.scala | 2 +- .../com/spark3d/spatialPartitioning/OctreePartitioner.scala | 2 +- .../com/spark3d/spatialPartitioning/OctreePartitioning.scala | 2 +- .../com/spark3d/spatialPartitioning/OnionPartitioner.scala | 2 +- .../com/spark3d/spatialPartitioning/OnionPartitioning.scala | 2 +- .../com/spark3d/spatialPartitioning/SpatialPartitioner.scala | 2 +- .../scala/com/spark3d/utils/BoundedUniquePriorityQueue.scala | 3 +-- src/main/scala/com/spark3d/utils/ExtPointing.scala | 2 +- .../scala/com/spark3d/utils/GeometryObjectComparator.scala | 2 +- src/main/scala/com/spark3d/utils/GridType.scala | 2 +- src/main/scala/com/spark3d/utils/Utils.scala | 2 +- src/test/scala/com/spark3d/CheckersTest.scala | 2 +- src/test/scala/com/spark3d/PartitionersTest.scala | 2 +- src/test/scala/com/spark3d/RepartitioningTest.scala | 2 +- .../scala/com/spark3d/geometryObjects/BoxEnvelopeTest.scala | 2 +- src/test/scala/com/spark3d/geometryObjects/Point3DTest.scala | 2 +- src/test/scala/com/spark3d/geometryObjects/Shape3DTest.scala | 2 +- .../scala/com/spark3d/geometryObjects/ShellEnvelopeTest.scala | 2 +- src/test/scala/com/spark3d/python/PythonClassTagTest.scala | 2 +- .../com/spark3d/serialization/Spark3dRegistratorTest.scala | 2 +- .../com/spark3d/spatialPartitioning/KeyPartitionerTest.scala | 2 +- .../spark3d/spatialPartitioning/OctreePartitionerTest.scala | 2 +- .../scala/com/spark3d/spatialPartitioning/OctreeTest.scala | 2 +- .../com/spark3d/spatialPartitioning/OnionPartitionerTest.scala | 2 +- src/test/scala/com/spark3d/utils/GridTypeTest.scala | 2 +- src/test/scala/com/spark3d/utils/UtilsTest.scala | 2 +- test_python.sh | 2 +- test_scala.sh | 2 +- 49 files changed, 49 insertions(+), 50 deletions(-) diff --git a/build.sbt b/build.sbt index 45ffe13..8367ca6 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/pyspark3d/__init__.py b/pyspark3d/__init__.py index 45b255e..732b557 100644 --- a/pyspark3d/__init__.py +++ b/pyspark3d/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyspark3d/checkers.py b/pyspark3d/checkers.py index d6a738b..b2d7b35 100644 --- a/pyspark3d/checkers.py +++ b/pyspark3d/checkers.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyspark3d/converters.py b/pyspark3d/converters.py index c18f9f3..50bb971 100644 --- a/pyspark3d/converters.py +++ b/pyspark3d/converters.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyspark3d/geometryObjects.py b/pyspark3d/geometryObjects.py index bdfd040..105522c 100644 --- a/pyspark3d/geometryObjects.py +++ b/pyspark3d/geometryObjects.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyspark3d/pyspark3d_conf.py b/pyspark3d/pyspark3d_conf.py index 3b7475a..9c0bf90 100644 --- a/pyspark3d/pyspark3d_conf.py +++ b/pyspark3d/pyspark3d_conf.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyspark3d/repartitioning.py b/pyspark3d/repartitioning.py index f4eaf02..d321cc8 100644 --- a/pyspark3d/repartitioning.py +++ b/pyspark3d/repartitioning.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyspark3d/visualisation.py b/pyspark3d/visualisation.py index 570fb1a..97d4689 100644 --- a/pyspark3d/visualisation.py +++ b/pyspark3d/visualisation.py @@ -1,4 +1,4 @@ -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index 4c67e84..fb2ce5c 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/Checkers.scala b/src/main/scala/com/spark3d/Checkers.scala index 992d4e7..6d3984e 100644 --- a/src/main/scala/com/spark3d/Checkers.scala +++ b/src/main/scala/com/spark3d/Checkers.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/Partitioners.scala b/src/main/scala/com/spark3d/Partitioners.scala index b2f8f3a..d33ec14 100644 --- a/src/main/scala/com/spark3d/Partitioners.scala +++ b/src/main/scala/com/spark3d/Partitioners.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/Repartitioning.scala b/src/main/scala/com/spark3d/Repartitioning.scala index 7d18605..23e4fc3 100644 --- a/src/main/scala/com/spark3d/Repartitioning.scala +++ b/src/main/scala/com/spark3d/Repartitioning.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/geometryObjects/BoxEnvelope.scala b/src/main/scala/com/spark3d/geometryObjects/BoxEnvelope.scala index c6f420d..3a1c98c 100644 --- a/src/main/scala/com/spark3d/geometryObjects/BoxEnvelope.scala +++ b/src/main/scala/com/spark3d/geometryObjects/BoxEnvelope.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/geometryObjects/Point3D.scala b/src/main/scala/com/spark3d/geometryObjects/Point3D.scala index 76c550b..8c60552 100644 --- a/src/main/scala/com/spark3d/geometryObjects/Point3D.scala +++ b/src/main/scala/com/spark3d/geometryObjects/Point3D.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/geometryObjects/Shape3D.scala b/src/main/scala/com/spark3d/geometryObjects/Shape3D.scala index 78503c1..4973c85 100644 --- a/src/main/scala/com/spark3d/geometryObjects/Shape3D.scala +++ b/src/main/scala/com/spark3d/geometryObjects/Shape3D.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/geometryObjects/ShellEnvelope.scala b/src/main/scala/com/spark3d/geometryObjects/ShellEnvelope.scala index 5b56bee..692b83f 100644 --- a/src/main/scala/com/spark3d/geometryObjects/ShellEnvelope.scala +++ b/src/main/scala/com/spark3d/geometryObjects/ShellEnvelope.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/indexingMethods/HealpixIndexing.scala b/src/main/scala/com/spark3d/indexingMethods/HealpixIndexing.scala index 4dee4d2..5ac4b1a 100644 --- a/src/main/scala/com/spark3d/indexingMethods/HealpixIndexing.scala +++ b/src/main/scala/com/spark3d/indexingMethods/HealpixIndexing.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/package.scala b/src/main/scala/com/spark3d/package.scala index fa93fc4..e18b24e 100644 --- a/src/main/scala/com/spark3d/package.scala +++ b/src/main/scala/com/spark3d/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/python/PythonClassTag.scala b/src/main/scala/com/spark3d/python/PythonClassTag.scala index edf3c60..35cd1af 100644 --- a/src/main/scala/com/spark3d/python/PythonClassTag.scala +++ b/src/main/scala/com/spark3d/python/PythonClassTag.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/serialization/Spark3dRegistrator.scala b/src/main/scala/com/spark3d/serialization/Spark3dRegistrator.scala index c539ed9..983291b 100644 --- a/src/main/scala/com/spark3d/serialization/Spark3dRegistrator.scala +++ b/src/main/scala/com/spark3d/serialization/Spark3dRegistrator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/KeyPartitioner.scala b/src/main/scala/com/spark3d/spatialPartitioning/KeyPartitioner.scala index 03f3d6f..1a8fe11 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/KeyPartitioner.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/KeyPartitioner.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/Octree.scala b/src/main/scala/com/spark3d/spatialPartitioning/Octree.scala index 9f1f80c..d21332e 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/Octree.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/Octree.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioner.scala b/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioner.scala index ec0a5e0..5ace7dd 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioner.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioner.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioning.scala b/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioning.scala index 883ca08..41c62ae 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioning.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/OctreePartitioning.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioner.scala b/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioner.scala index cdc6b5d..78645b8 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioner.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioner.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioning.scala b/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioning.scala index e5f4ab2..1802932 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioning.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/OnionPartitioning.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/spatialPartitioning/SpatialPartitioner.scala b/src/main/scala/com/spark3d/spatialPartitioning/SpatialPartitioner.scala index 4947fad..4312d47 100644 --- a/src/main/scala/com/spark3d/spatialPartitioning/SpatialPartitioner.scala +++ b/src/main/scala/com/spark3d/spatialPartitioning/SpatialPartitioner.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/utils/BoundedUniquePriorityQueue.scala b/src/main/scala/com/spark3d/utils/BoundedUniquePriorityQueue.scala index d770306..f915c48 100644 --- a/src/main/scala/com/spark3d/utils/BoundedUniquePriorityQueue.scala +++ b/src/main/scala/com/spark3d/utils/BoundedUniquePriorityQueue.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -86,4 +86,3 @@ class BoundedUniquePriorityQueue[A <: Shape3D](maxSize: Int)(implicit ord: Order } } } - diff --git a/src/main/scala/com/spark3d/utils/ExtPointing.scala b/src/main/scala/com/spark3d/utils/ExtPointing.scala index 05518ac..f8e168f 100644 --- a/src/main/scala/com/spark3d/utils/ExtPointing.scala +++ b/src/main/scala/com/spark3d/utils/ExtPointing.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/utils/GeometryObjectComparator.scala b/src/main/scala/com/spark3d/utils/GeometryObjectComparator.scala index 963b045..97fb4b2 100644 --- a/src/main/scala/com/spark3d/utils/GeometryObjectComparator.scala +++ b/src/main/scala/com/spark3d/utils/GeometryObjectComparator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/utils/GridType.scala b/src/main/scala/com/spark3d/utils/GridType.scala index 8dd82c2..f8a9e0a 100644 --- a/src/main/scala/com/spark3d/utils/GridType.scala +++ b/src/main/scala/com/spark3d/utils/GridType.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/scala/com/spark3d/utils/Utils.scala b/src/main/scala/com/spark3d/utils/Utils.scala index aa0d9f7..669bafd 100644 --- a/src/main/scala/com/spark3d/utils/Utils.scala +++ b/src/main/scala/com/spark3d/utils/Utils.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/CheckersTest.scala b/src/test/scala/com/spark3d/CheckersTest.scala index 14bcd35..556c91d 100644 --- a/src/test/scala/com/spark3d/CheckersTest.scala +++ b/src/test/scala/com/spark3d/CheckersTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/PartitionersTest.scala b/src/test/scala/com/spark3d/PartitionersTest.scala index c054f01..7e4a3a9 100644 --- a/src/test/scala/com/spark3d/PartitionersTest.scala +++ b/src/test/scala/com/spark3d/PartitionersTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/RepartitioningTest.scala b/src/test/scala/com/spark3d/RepartitioningTest.scala index d4e95cb..37466f0 100644 --- a/src/test/scala/com/spark3d/RepartitioningTest.scala +++ b/src/test/scala/com/spark3d/RepartitioningTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/geometryObjects/BoxEnvelopeTest.scala b/src/test/scala/com/spark3d/geometryObjects/BoxEnvelopeTest.scala index 2a761af..a5e5282 100644 --- a/src/test/scala/com/spark3d/geometryObjects/BoxEnvelopeTest.scala +++ b/src/test/scala/com/spark3d/geometryObjects/BoxEnvelopeTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/geometryObjects/Point3DTest.scala b/src/test/scala/com/spark3d/geometryObjects/Point3DTest.scala index f7f5914..97617a4 100644 --- a/src/test/scala/com/spark3d/geometryObjects/Point3DTest.scala +++ b/src/test/scala/com/spark3d/geometryObjects/Point3DTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/geometryObjects/Shape3DTest.scala b/src/test/scala/com/spark3d/geometryObjects/Shape3DTest.scala index 91dad6a..168f28d 100644 --- a/src/test/scala/com/spark3d/geometryObjects/Shape3DTest.scala +++ b/src/test/scala/com/spark3d/geometryObjects/Shape3DTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/geometryObjects/ShellEnvelopeTest.scala b/src/test/scala/com/spark3d/geometryObjects/ShellEnvelopeTest.scala index fb8c617..a5f7f6a 100644 --- a/src/test/scala/com/spark3d/geometryObjects/ShellEnvelopeTest.scala +++ b/src/test/scala/com/spark3d/geometryObjects/ShellEnvelopeTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/python/PythonClassTagTest.scala b/src/test/scala/com/spark3d/python/PythonClassTagTest.scala index ec07280..985f814 100644 --- a/src/test/scala/com/spark3d/python/PythonClassTagTest.scala +++ b/src/test/scala/com/spark3d/python/PythonClassTagTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/serialization/Spark3dRegistratorTest.scala b/src/test/scala/com/spark3d/serialization/Spark3dRegistratorTest.scala index 9d0447f..50d4298 100644 --- a/src/test/scala/com/spark3d/serialization/Spark3dRegistratorTest.scala +++ b/src/test/scala/com/spark3d/serialization/Spark3dRegistratorTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/spatialPartitioning/KeyPartitionerTest.scala b/src/test/scala/com/spark3d/spatialPartitioning/KeyPartitionerTest.scala index c39370c..73f8e55 100644 --- a/src/test/scala/com/spark3d/spatialPartitioning/KeyPartitionerTest.scala +++ b/src/test/scala/com/spark3d/spatialPartitioning/KeyPartitionerTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/spatialPartitioning/OctreePartitionerTest.scala b/src/test/scala/com/spark3d/spatialPartitioning/OctreePartitionerTest.scala index 2e1fe4e..3ef49d9 100644 --- a/src/test/scala/com/spark3d/spatialPartitioning/OctreePartitionerTest.scala +++ b/src/test/scala/com/spark3d/spatialPartitioning/OctreePartitionerTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/spatialPartitioning/OctreeTest.scala b/src/test/scala/com/spark3d/spatialPartitioning/OctreeTest.scala index d0db2bf..35f06af 100644 --- a/src/test/scala/com/spark3d/spatialPartitioning/OctreeTest.scala +++ b/src/test/scala/com/spark3d/spatialPartitioning/OctreeTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Mayur Bhosale + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/spatialPartitioning/OnionPartitionerTest.scala b/src/test/scala/com/spark3d/spatialPartitioning/OnionPartitionerTest.scala index 54d7157..ff48c8c 100644 --- a/src/test/scala/com/spark3d/spatialPartitioning/OnionPartitionerTest.scala +++ b/src/test/scala/com/spark3d/spatialPartitioning/OnionPartitionerTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/utils/GridTypeTest.scala b/src/test/scala/com/spark3d/utils/GridTypeTest.scala index 11e451b..3e275ef 100644 --- a/src/test/scala/com/spark3d/utils/GridTypeTest.scala +++ b/src/test/scala/com/spark3d/utils/GridTypeTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/scala/com/spark3d/utils/UtilsTest.scala b/src/test/scala/com/spark3d/utils/UtilsTest.scala index 196400c..024d441 100644 --- a/src/test/scala/com/spark3d/utils/UtilsTest.scala +++ b/src/test/scala/com/spark3d/utils/UtilsTest.scala @@ -1,5 +1,5 @@ /* - * Copyright 2018 Julien Peloton + * Copyright 2018 AstroLab Software * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test_python.sh b/test_python.sh index caea301..3f9f4cf 100755 --- a/test_python.sh +++ b/test_python.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test_scala.sh b/test_scala.sh index 0da0fba..0dc1212 100755 --- a/test_scala.sh +++ b/test_scala.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2018 Julien Peloton +# Copyright 2018 AstroLab Software # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.