diff --git a/CHANGELOG.md b/CHANGELOG.md index a1b8092370776..9d7aa75e2a2b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ ## DART 6 -### DART 6.7.0 (201X-XX-XX) +### [DART 6.7.0 (2019-01-10)](https://github.com/dartsim/dart/milestone/45?closed=1) + +#### Changes * Build system * Fixed compilation warnings for newer versions of compilers: [#1177](https://github.com/dartsim/dart/pull/1177) * Changed to generate namespace headers without requiring *.hpp.in files: [#1192](https://github.com/dartsim/dart/pull/1192) + * Dropped supporting Ubuntu Trusty and started using imported targets of dependencies: [#1212](https://github.com/dartsim/dart/pull/1212) * Collision Detection @@ -35,6 +38,20 @@ * Updated Googletest to version 1.8.1: [#1214](https://github.com/dartsim/dart/pull/1214) +#### Compilers Tested + + * Linux + + * GCC (C++11): 5.4.0, 7.3.0, 8.2.0 + + * Linux (32-bit) + + * GCC (C++11): 5.4.0 + + * macOS + + * AppleClang (C++11): 9.1.0 + ### [DART 6.6.2 (2018-09-03)](https://github.com/dartsim/dart/milestone/47?closed=1) * Utils diff --git a/LICENSE b/LICENSE index ec5a5cc34acc4..e1327a1221e4a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,8 @@ Copyright (c) 2011-2016, Humanoid Lab, Georgia Tech Research Corporation Copyright (c) 2016-2017, Personal Robotics Lab, Carnegie Mellon University -Copyright (c) 2011-2018, Graphics Lab, Georgia Tech Research Corporation -Copyright (c) 2017-2018, Personal Robotics Lab, University of Washington -Copyright (c) 2017-2018, Open Source Robotics Foundation +Copyright (c) 2011-2019, Graphics Lab, Georgia Tech Research Corporation +Copyright (c) 2017-2019, Personal Robotics Lab, University of Washington +Copyright (c) 2017-2019, Open Source Robotics Foundation All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/cmake/DARTFindurdfdom.cmake b/cmake/DARTFindurdfdom.cmake index 9259479a65a08..23ea9e8875720 100644 --- a/cmake/DARTFindurdfdom.cmake +++ b/cmake/DARTFindurdfdom.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/FindIPOPT.cmake b/cmake/FindIPOPT.cmake index 5f81cd33b3ca0..dbc617d5f33b8 100644 --- a/cmake/FindIPOPT.cmake +++ b/cmake/FindIPOPT.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/FindNLOPT.cmake b/cmake/FindNLOPT.cmake index 95ba6cb46fd52..2912cd6ccbab3 100644 --- a/cmake/FindNLOPT.cmake +++ b/cmake/FindNLOPT.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/FindODE.cmake b/cmake/FindODE.cmake index 3e9f20c9d09b9..36014c5af395d 100644 --- a/cmake/FindODE.cmake +++ b/cmake/FindODE.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/Findassimp.cmake b/cmake/Findassimp.cmake index 03eca6363a08c..cc1e7fc6d0aa3 100644 --- a/cmake/Findassimp.cmake +++ b/cmake/Findassimp.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/Findccd.cmake b/cmake/Findccd.cmake index 66f50061d6ca2..1a79fc9078479 100644 --- a/cmake/Findccd.cmake +++ b/cmake/Findccd.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/Findfcl.cmake b/cmake/Findfcl.cmake index d7eb46e54d446..2e9629d1d16c8 100644 --- a/cmake/Findfcl.cmake +++ b/cmake/Findfcl.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/Findflann.cmake b/cmake/Findflann.cmake index c3978b9f09cdf..5c4f79408eec4 100644 --- a/cmake/Findflann.cmake +++ b/cmake/Findflann.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/cmake/Findtinyxml2.cmake b/cmake/Findtinyxml2.cmake index 73674d4c0094e..3575d5d252211 100644 --- a/cmake/Findtinyxml2.cmake +++ b/cmake/Findtinyxml2.cmake @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/dart/collision/CollisionDetector.cpp b/dart/collision/CollisionDetector.cpp index 31cef09641429..931f5bf896609 100644 --- a/dart/collision/CollisionDetector.cpp +++ b/dart/collision/CollisionDetector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionDetector.hpp b/dart/collision/CollisionDetector.hpp index e963c1a29fcae..570565928e8ae 100644 --- a/dart/collision/CollisionDetector.hpp +++ b/dart/collision/CollisionDetector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionFilter.cpp b/dart/collision/CollisionFilter.cpp index 1546bfb317b7c..5c72830164efa 100644 --- a/dart/collision/CollisionFilter.cpp +++ b/dart/collision/CollisionFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionFilter.hpp b/dart/collision/CollisionFilter.hpp index d4f92b955e367..c61013d9c57d6 100644 --- a/dart/collision/CollisionFilter.hpp +++ b/dart/collision/CollisionFilter.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionGroup.cpp b/dart/collision/CollisionGroup.cpp index 9ce151312451e..1ffe339e9f253 100644 --- a/dart/collision/CollisionGroup.cpp +++ b/dart/collision/CollisionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionGroup.hpp b/dart/collision/CollisionGroup.hpp index 4e286efdf90a9..65c61128a93c4 100644 --- a/dart/collision/CollisionGroup.hpp +++ b/dart/collision/CollisionGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionObject.cpp b/dart/collision/CollisionObject.cpp index 8f858f065b428..e4e518f40071e 100644 --- a/dart/collision/CollisionObject.cpp +++ b/dart/collision/CollisionObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionObject.hpp b/dart/collision/CollisionObject.hpp index d520e21c39839..6ea29dcc27ba9 100644 --- a/dart/collision/CollisionObject.hpp +++ b/dart/collision/CollisionObject.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionOption.cpp b/dart/collision/CollisionOption.cpp index 980cfc9bea539..4e5b43800acb9 100644 --- a/dart/collision/CollisionOption.cpp +++ b/dart/collision/CollisionOption.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionOption.hpp b/dart/collision/CollisionOption.hpp index 8c1ca5163c117..97399426957e3 100644 --- a/dart/collision/CollisionOption.hpp +++ b/dart/collision/CollisionOption.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionResult.cpp b/dart/collision/CollisionResult.cpp index d319979f5b508..7c3d20704eaef 100644 --- a/dart/collision/CollisionResult.cpp +++ b/dart/collision/CollisionResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/CollisionResult.hpp b/dart/collision/CollisionResult.hpp index 4cb3bcfc56e97..c53181bf414c1 100644 --- a/dart/collision/CollisionResult.hpp +++ b/dart/collision/CollisionResult.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/Contact.cpp b/dart/collision/Contact.cpp index 55d7d31d69131..d57085d84a1b3 100644 --- a/dart/collision/Contact.cpp +++ b/dart/collision/Contact.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/Contact.hpp b/dart/collision/Contact.hpp index 6a67c188ef0aa..1add550109f9a 100644 --- a/dart/collision/Contact.hpp +++ b/dart/collision/Contact.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/DistanceFilter.cpp b/dart/collision/DistanceFilter.cpp index 9808db7640f81..aec307cf0a1fb 100644 --- a/dart/collision/DistanceFilter.cpp +++ b/dart/collision/DistanceFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/DistanceFilter.hpp b/dart/collision/DistanceFilter.hpp index eb1c6a5512bb2..7a6e8a490fa89 100644 --- a/dart/collision/DistanceFilter.hpp +++ b/dart/collision/DistanceFilter.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/DistanceOption.cpp b/dart/collision/DistanceOption.cpp index aa5e76b0ab150..7e005705f6878 100644 --- a/dart/collision/DistanceOption.cpp +++ b/dart/collision/DistanceOption.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/DistanceOption.hpp b/dart/collision/DistanceOption.hpp index bb7608939735c..625f36cf3b0aa 100644 --- a/dart/collision/DistanceOption.hpp +++ b/dart/collision/DistanceOption.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/DistanceResult.cpp b/dart/collision/DistanceResult.cpp index f9fee6afeaba5..6bf0324d4d854 100644 --- a/dart/collision/DistanceResult.cpp +++ b/dart/collision/DistanceResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/DistanceResult.hpp b/dart/collision/DistanceResult.hpp index 9b0b8d1e64c5b..93f8ebc96a9fb 100644 --- a/dart/collision/DistanceResult.hpp +++ b/dart/collision/DistanceResult.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/Option.hpp b/dart/collision/Option.hpp index 375ba8c83778c..01eb51b08a7de 100644 --- a/dart/collision/Option.hpp +++ b/dart/collision/Option.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/Result.hpp b/dart/collision/Result.hpp index 989081c54e514..d56d47b121dee 100644 --- a/dart/collision/Result.hpp +++ b/dart/collision/Result.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/SmartPointer.hpp b/dart/collision/SmartPointer.hpp index a3a70e997579e..552ec7bb413a3 100644 --- a/dart/collision/SmartPointer.hpp +++ b/dart/collision/SmartPointer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionDetector.cpp b/dart/collision/bullet/BulletCollisionDetector.cpp index d75bc55d13a47..d7ec57d829393 100644 --- a/dart/collision/bullet/BulletCollisionDetector.cpp +++ b/dart/collision/bullet/BulletCollisionDetector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionDetector.hpp b/dart/collision/bullet/BulletCollisionDetector.hpp index 174cdf4dc4f7a..7c94141033852 100644 --- a/dart/collision/bullet/BulletCollisionDetector.hpp +++ b/dart/collision/bullet/BulletCollisionDetector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionGroup.cpp b/dart/collision/bullet/BulletCollisionGroup.cpp index 6543e259ccf96..0fc5f366cec87 100644 --- a/dart/collision/bullet/BulletCollisionGroup.cpp +++ b/dart/collision/bullet/BulletCollisionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionGroup.hpp b/dart/collision/bullet/BulletCollisionGroup.hpp index 7ecbb5bebe8f9..dd5e8082c9341 100644 --- a/dart/collision/bullet/BulletCollisionGroup.hpp +++ b/dart/collision/bullet/BulletCollisionGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionObject.cpp b/dart/collision/bullet/BulletCollisionObject.cpp index 3aaa6d04e9dd8..f77b7b0aa1d99 100644 --- a/dart/collision/bullet/BulletCollisionObject.cpp +++ b/dart/collision/bullet/BulletCollisionObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionObject.hpp b/dart/collision/bullet/BulletCollisionObject.hpp index c0b7f234439b9..ff1b26cd70df4 100644 --- a/dart/collision/bullet/BulletCollisionObject.hpp +++ b/dart/collision/bullet/BulletCollisionObject.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionShape.cpp b/dart/collision/bullet/BulletCollisionShape.cpp index 50cdf287766f3..3aae8a742241b 100644 --- a/dart/collision/bullet/BulletCollisionShape.cpp +++ b/dart/collision/bullet/BulletCollisionShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletCollisionShape.hpp b/dart/collision/bullet/BulletCollisionShape.hpp index dccc9b70ed387..1df82a09b0a61 100644 --- a/dart/collision/bullet/BulletCollisionShape.hpp +++ b/dart/collision/bullet/BulletCollisionShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletTypes.cpp b/dart/collision/bullet/BulletTypes.cpp index 023bba4c2638f..721a399e24ab6 100644 --- a/dart/collision/bullet/BulletTypes.cpp +++ b/dart/collision/bullet/BulletTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/BulletTypes.hpp b/dart/collision/bullet/BulletTypes.hpp index 1324a3a65c287..277fbfbc56787 100644 --- a/dart/collision/bullet/BulletTypes.hpp +++ b/dart/collision/bullet/BulletTypes.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/detail/BulletCollisionDispatcher.cpp b/dart/collision/bullet/detail/BulletCollisionDispatcher.cpp index 9c2a2e9c4e178..6c976442350db 100644 --- a/dart/collision/bullet/detail/BulletCollisionDispatcher.cpp +++ b/dart/collision/bullet/detail/BulletCollisionDispatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp b/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp index 41d86dbcb6907..de4038fb8653c 100644 --- a/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +++ b/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/detail/BulletOverlapFilterCallback.cpp b/dart/collision/bullet/detail/BulletOverlapFilterCallback.cpp index 6573a92883afa..a9b7bf995be45 100644 --- a/dart/collision/bullet/detail/BulletOverlapFilterCallback.cpp +++ b/dart/collision/bullet/detail/BulletOverlapFilterCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp b/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp index 0614ca2cfffc2..e2827eaad5b61 100644 --- a/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +++ b/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollide.cpp b/dart/collision/dart/DARTCollide.cpp index 84f374fb016cf..64f15f2c0d9de 100644 --- a/dart/collision/dart/DARTCollide.cpp +++ b/dart/collision/dart/DARTCollide.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollide.hpp b/dart/collision/dart/DARTCollide.hpp index 8bd8fea2d1ac5..83d3054cc33cd 100644 --- a/dart/collision/dart/DARTCollide.hpp +++ b/dart/collision/dart/DARTCollide.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollisionDetector.cpp b/dart/collision/dart/DARTCollisionDetector.cpp index 54ec401cc99f1..1903c5bc2f6be 100644 --- a/dart/collision/dart/DARTCollisionDetector.cpp +++ b/dart/collision/dart/DARTCollisionDetector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollisionDetector.hpp b/dart/collision/dart/DARTCollisionDetector.hpp index 709d4725d3801..314c73f192b5c 100644 --- a/dart/collision/dart/DARTCollisionDetector.hpp +++ b/dart/collision/dart/DARTCollisionDetector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollisionGroup.cpp b/dart/collision/dart/DARTCollisionGroup.cpp index 6eee8ed95a7a2..1dc2e331932ec 100644 --- a/dart/collision/dart/DARTCollisionGroup.cpp +++ b/dart/collision/dart/DARTCollisionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollisionGroup.hpp b/dart/collision/dart/DARTCollisionGroup.hpp index 8547aba004633..c44a25c9c1a9a 100644 --- a/dart/collision/dart/DARTCollisionGroup.hpp +++ b/dart/collision/dart/DARTCollisionGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollisionObject.cpp b/dart/collision/dart/DARTCollisionObject.cpp index 18e88120e4037..724852fc059f6 100644 --- a/dart/collision/dart/DARTCollisionObject.cpp +++ b/dart/collision/dart/DARTCollisionObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/dart/DARTCollisionObject.hpp b/dart/collision/dart/DARTCollisionObject.hpp index 6fea7672b4023..7a52614354369 100644 --- a/dart/collision/dart/DARTCollisionObject.hpp +++ b/dart/collision/dart/DARTCollisionObject.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/detail/CollisionDetector.hpp b/dart/collision/detail/CollisionDetector.hpp index a653ae91bdf5f..4150cadfe6312 100644 --- a/dart/collision/detail/CollisionDetector.hpp +++ b/dart/collision/detail/CollisionDetector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/detail/CollisionGroup.hpp b/dart/collision/detail/CollisionGroup.hpp index b3a2b6fc96c3e..7750d4a830e8a 100644 --- a/dart/collision/detail/CollisionGroup.hpp +++ b/dart/collision/detail/CollisionGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/detail/Contact-impl.hpp b/dart/collision/detail/Contact-impl.hpp index 50305c21665cd..0888c6fdcf4b0 100644 --- a/dart/collision/detail/Contact-impl.hpp +++ b/dart/collision/detail/Contact-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/detail/UnorderedPairs.hpp b/dart/collision/detail/UnorderedPairs.hpp index 21db48cce52a0..fe16b40ab5bd0 100644 --- a/dart/collision/detail/UnorderedPairs.hpp +++ b/dart/collision/detail/UnorderedPairs.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/BackwardCompatibility.cpp b/dart/collision/fcl/BackwardCompatibility.cpp index 5cdbee527580a..93cec9bd7f7f3 100644 --- a/dart/collision/fcl/BackwardCompatibility.cpp +++ b/dart/collision/fcl/BackwardCompatibility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/BackwardCompatibility.hpp b/dart/collision/fcl/BackwardCompatibility.hpp index 766a8fc1ecf2d..3ca604d5e258a 100644 --- a/dart/collision/fcl/BackwardCompatibility.hpp +++ b/dart/collision/fcl/BackwardCompatibility.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/CollisionShapes.hpp b/dart/collision/fcl/CollisionShapes.hpp index 940888adc24ad..89e94c32badfd 100644 --- a/dart/collision/fcl/CollisionShapes.hpp +++ b/dart/collision/fcl/CollisionShapes.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLCollisionDetector.cpp b/dart/collision/fcl/FCLCollisionDetector.cpp index fe4bf320e1de7..a1f6582817e8b 100644 --- a/dart/collision/fcl/FCLCollisionDetector.cpp +++ b/dart/collision/fcl/FCLCollisionDetector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLCollisionDetector.hpp b/dart/collision/fcl/FCLCollisionDetector.hpp index 563b263976e0a..997019fbe8012 100644 --- a/dart/collision/fcl/FCLCollisionDetector.hpp +++ b/dart/collision/fcl/FCLCollisionDetector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLCollisionGroup.cpp b/dart/collision/fcl/FCLCollisionGroup.cpp index 7b737afb161ad..77c21a7be0a94 100644 --- a/dart/collision/fcl/FCLCollisionGroup.cpp +++ b/dart/collision/fcl/FCLCollisionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLCollisionGroup.hpp b/dart/collision/fcl/FCLCollisionGroup.hpp index 2b7599630e798..3f68b0521856b 100644 --- a/dart/collision/fcl/FCLCollisionGroup.hpp +++ b/dart/collision/fcl/FCLCollisionGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLCollisionObject.cpp b/dart/collision/fcl/FCLCollisionObject.cpp index ea415c69257c9..fa36e8eb8b9af 100644 --- a/dart/collision/fcl/FCLCollisionObject.cpp +++ b/dart/collision/fcl/FCLCollisionObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLCollisionObject.hpp b/dart/collision/fcl/FCLCollisionObject.hpp index bd96a5b146dbc..c79762e2547c9 100644 --- a/dart/collision/fcl/FCLCollisionObject.hpp +++ b/dart/collision/fcl/FCLCollisionObject.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLTypes.cpp b/dart/collision/fcl/FCLTypes.cpp index d26a8fef8971f..68e9a4647d464 100644 --- a/dart/collision/fcl/FCLTypes.cpp +++ b/dart/collision/fcl/FCLTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/FCLTypes.hpp b/dart/collision/fcl/FCLTypes.hpp index 2a79283619a44..4604df67332f0 100644 --- a/dart/collision/fcl/FCLTypes.hpp +++ b/dart/collision/fcl/FCLTypes.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/fcl/tri_tri_intersection_test.hpp b/dart/collision/fcl/tri_tri_intersection_test.hpp index a4ad400453056..5fd6d078d4fe1 100644 --- a/dart/collision/fcl/tri_tri_intersection_test.hpp +++ b/dart/collision/fcl/tri_tri_intersection_test.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeCollisionDetector.cpp b/dart/collision/ode/OdeCollisionDetector.cpp index 65b43b20041fb..f2b3b58668e55 100644 --- a/dart/collision/ode/OdeCollisionDetector.cpp +++ b/dart/collision/ode/OdeCollisionDetector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeCollisionDetector.hpp b/dart/collision/ode/OdeCollisionDetector.hpp index 5e00b48471527..e3333a635ee7c 100644 --- a/dart/collision/ode/OdeCollisionDetector.hpp +++ b/dart/collision/ode/OdeCollisionDetector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeCollisionGroup.cpp b/dart/collision/ode/OdeCollisionGroup.cpp index 65494afd9ac4a..2767b8b70ad6b 100644 --- a/dart/collision/ode/OdeCollisionGroup.cpp +++ b/dart/collision/ode/OdeCollisionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeCollisionGroup.hpp b/dart/collision/ode/OdeCollisionGroup.hpp index f3870a821f12f..4285c7648701d 100644 --- a/dart/collision/ode/OdeCollisionGroup.hpp +++ b/dart/collision/ode/OdeCollisionGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeCollisionObject.cpp b/dart/collision/ode/OdeCollisionObject.cpp index b1d7abe91a2d7..c6ee4f36b2ba4 100644 --- a/dart/collision/ode/OdeCollisionObject.cpp +++ b/dart/collision/ode/OdeCollisionObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeCollisionObject.hpp b/dart/collision/ode/OdeCollisionObject.hpp index dc219e8f91dc1..536a1280c2b1e 100644 --- a/dart/collision/ode/OdeCollisionObject.hpp +++ b/dart/collision/ode/OdeCollisionObject.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeTypes.cpp b/dart/collision/ode/OdeTypes.cpp index 98a2993dd643f..a983f8f868ee3 100644 --- a/dart/collision/ode/OdeTypes.cpp +++ b/dart/collision/ode/OdeTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/OdeTypes.hpp b/dart/collision/ode/OdeTypes.hpp index 0e81196a21bfe..66f7a30d872a8 100644 --- a/dart/collision/ode/OdeTypes.hpp +++ b/dart/collision/ode/OdeTypes.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeBox.cpp b/dart/collision/ode/detail/OdeBox.cpp index ca5d214a04dbc..bbb3da5a3146b 100644 --- a/dart/collision/ode/detail/OdeBox.cpp +++ b/dart/collision/ode/detail/OdeBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeBox.hpp b/dart/collision/ode/detail/OdeBox.hpp index 242eff97fa1f2..ca810409609ad 100644 --- a/dart/collision/ode/detail/OdeBox.hpp +++ b/dart/collision/ode/detail/OdeBox.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeCapsule.cpp b/dart/collision/ode/detail/OdeCapsule.cpp index 10dda565f693c..cd30ee08e9e11 100644 --- a/dart/collision/ode/detail/OdeCapsule.cpp +++ b/dart/collision/ode/detail/OdeCapsule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeCapsule.hpp b/dart/collision/ode/detail/OdeCapsule.hpp index e5bbfe132adac..15135016d331a 100644 --- a/dart/collision/ode/detail/OdeCapsule.hpp +++ b/dart/collision/ode/detail/OdeCapsule.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeCylinder.cpp b/dart/collision/ode/detail/OdeCylinder.cpp index ab471b0e2f8bd..08238a7fe4fd2 100644 --- a/dart/collision/ode/detail/OdeCylinder.cpp +++ b/dart/collision/ode/detail/OdeCylinder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeCylinder.hpp b/dart/collision/ode/detail/OdeCylinder.hpp index a6f91ea056983..50526cc989601 100644 --- a/dart/collision/ode/detail/OdeCylinder.hpp +++ b/dart/collision/ode/detail/OdeCylinder.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeGeom.cpp b/dart/collision/ode/detail/OdeGeom.cpp index c372f5903a565..c51896808644d 100644 --- a/dart/collision/ode/detail/OdeGeom.cpp +++ b/dart/collision/ode/detail/OdeGeom.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeGeom.hpp b/dart/collision/ode/detail/OdeGeom.hpp index 37ec020116095..ab03e57817697 100644 --- a/dart/collision/ode/detail/OdeGeom.hpp +++ b/dart/collision/ode/detail/OdeGeom.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeHeightmap-impl.hpp b/dart/collision/ode/detail/OdeHeightmap-impl.hpp index cbc4a9618a98d..b593317a93128 100644 --- a/dart/collision/ode/detail/OdeHeightmap-impl.hpp +++ b/dart/collision/ode/detail/OdeHeightmap-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeHeightmap.hpp b/dart/collision/ode/detail/OdeHeightmap.hpp index 9785ffdf1ebf0..136d2ed2c8842 100644 --- a/dart/collision/ode/detail/OdeHeightmap.hpp +++ b/dart/collision/ode/detail/OdeHeightmap.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeMesh.cpp b/dart/collision/ode/detail/OdeMesh.cpp index 64d9fca1cd8c4..1eaf622b33fc7 100644 --- a/dart/collision/ode/detail/OdeMesh.cpp +++ b/dart/collision/ode/detail/OdeMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeMesh.hpp b/dart/collision/ode/detail/OdeMesh.hpp index 073f1986668f1..d7667f6abd478 100644 --- a/dart/collision/ode/detail/OdeMesh.hpp +++ b/dart/collision/ode/detail/OdeMesh.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdePlane.cpp b/dart/collision/ode/detail/OdePlane.cpp index 2a9c4ae2ffb61..3a69f6bb6eb31 100644 --- a/dart/collision/ode/detail/OdePlane.cpp +++ b/dart/collision/ode/detail/OdePlane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdePlane.hpp b/dart/collision/ode/detail/OdePlane.hpp index de48cdf0a1131..eea04d8c8e952 100644 --- a/dart/collision/ode/detail/OdePlane.hpp +++ b/dart/collision/ode/detail/OdePlane.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeSphere.cpp b/dart/collision/ode/detail/OdeSphere.cpp index d4fe276b7b211..456fca3072fed 100644 --- a/dart/collision/ode/detail/OdeSphere.cpp +++ b/dart/collision/ode/detail/OdeSphere.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/collision/ode/detail/OdeSphere.hpp b/dart/collision/ode/detail/OdeSphere.hpp index 70c9a8eb5fe9b..16d4ff94ace0b 100644 --- a/dart/collision/ode/detail/OdeSphere.hpp +++ b/dart/collision/ode/detail/OdeSphere.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Aspect.cpp b/dart/common/Aspect.cpp index ff468e561c329..d3ed89b03c5c8 100644 --- a/dart/common/Aspect.cpp +++ b/dart/common/Aspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Aspect.hpp b/dart/common/Aspect.hpp index 2c36b8ebc3d89..99efa201053e9 100644 --- a/dart/common/Aspect.hpp +++ b/dart/common/Aspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/AspectWithVersion.hpp b/dart/common/AspectWithVersion.hpp index 70f8c2748ca78..b8e0a89377186 100644 --- a/dart/common/AspectWithVersion.hpp +++ b/dart/common/AspectWithVersion.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Cloneable.hpp b/dart/common/Cloneable.hpp index 1614e66b59427..cc282aa7847e5 100644 --- a/dart/common/Cloneable.hpp +++ b/dart/common/Cloneable.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Composite.cpp b/dart/common/Composite.cpp index 20be35dbacd62..4e3e8e6fc96fb 100644 --- a/dart/common/Composite.cpp +++ b/dart/common/Composite.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Composite.hpp b/dart/common/Composite.hpp index 15d9912090f09..790158863c3f8 100644 --- a/dart/common/Composite.hpp +++ b/dart/common/Composite.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/CompositeJoiner.hpp b/dart/common/CompositeJoiner.hpp index 184b7f2e2a0b3..d2e94640b59f2 100644 --- a/dart/common/CompositeJoiner.hpp +++ b/dart/common/CompositeJoiner.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Console.cpp b/dart/common/Console.cpp index aab35f8cf5ac4..575c4e133ba44 100644 --- a/dart/common/Console.cpp +++ b/dart/common/Console.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Console.hpp b/dart/common/Console.hpp index c93192ee32438..5bb8a30387de4 100644 --- a/dart/common/Console.hpp +++ b/dart/common/Console.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Deprecated.hpp b/dart/common/Deprecated.hpp index 6d331d0a60db1..4c1ee8e986dfb 100644 --- a/dart/common/Deprecated.hpp +++ b/dart/common/Deprecated.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/EmbeddedAspect.hpp b/dart/common/EmbeddedAspect.hpp index da94baa9b4e08..7f9cf71d33153 100644 --- a/dart/common/EmbeddedAspect.hpp +++ b/dart/common/EmbeddedAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Empty.hpp b/dart/common/Empty.hpp index f831f998aab81..7a45365f54436 100644 --- a/dart/common/Empty.hpp +++ b/dart/common/Empty.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Factory.hpp b/dart/common/Factory.hpp index dd383bb5f3979..c722d1c299ac3 100644 --- a/dart/common/Factory.hpp +++ b/dart/common/Factory.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/LocalResource.cpp b/dart/common/LocalResource.cpp index 98620a101ff92..caf0707778a9c 100644 --- a/dart/common/LocalResource.cpp +++ b/dart/common/LocalResource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/LocalResource.hpp b/dart/common/LocalResource.hpp index 06d393830a8d8..bc19597bd2e95 100644 --- a/dart/common/LocalResource.hpp +++ b/dart/common/LocalResource.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/LocalResourceRetriever.cpp b/dart/common/LocalResourceRetriever.cpp index 3202cfc938a41..1052716aa0fdf 100644 --- a/dart/common/LocalResourceRetriever.cpp +++ b/dart/common/LocalResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/LocalResourceRetriever.hpp b/dart/common/LocalResourceRetriever.hpp index 07700901cc014..371ed8ac88962 100644 --- a/dart/common/LocalResourceRetriever.hpp +++ b/dart/common/LocalResourceRetriever.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/LockableReference.hpp b/dart/common/LockableReference.hpp index cb9baa6a0ceff..e0b6c1d545844 100644 --- a/dart/common/LockableReference.hpp +++ b/dart/common/LockableReference.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Memory.hpp b/dart/common/Memory.hpp index 60225273052dd..4873d61a8f34f 100644 --- a/dart/common/Memory.hpp +++ b/dart/common/Memory.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/NameManager.hpp b/dart/common/NameManager.hpp index e98b12876b080..a71d189ef1002 100644 --- a/dart/common/NameManager.hpp +++ b/dart/common/NameManager.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Observer.cpp b/dart/common/Observer.cpp index 5a109c1f947dc..44eab00df4ac5 100644 --- a/dart/common/Observer.cpp +++ b/dart/common/Observer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Observer.hpp b/dart/common/Observer.hpp index cf517b8e0ae6f..94453dee9250e 100644 --- a/dart/common/Observer.hpp +++ b/dart/common/Observer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Platform.hpp b/dart/common/Platform.hpp index f88c33ed1cf29..39bd263793eb8 100644 --- a/dart/common/Platform.hpp +++ b/dart/common/Platform.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/ProxyAspect.hpp b/dart/common/ProxyAspect.hpp index 00de980733bee..3cd9c96f332d0 100644 --- a/dart/common/ProxyAspect.hpp +++ b/dart/common/ProxyAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/RequiresAspect.hpp b/dart/common/RequiresAspect.hpp index 12bde5935d393..492321f5c1acc 100644 --- a/dart/common/RequiresAspect.hpp +++ b/dart/common/RequiresAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Resource.cpp b/dart/common/Resource.cpp index 23d73d5709c98..6fcba8c0f4fd7 100644 --- a/dart/common/Resource.cpp +++ b/dart/common/Resource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Resource.hpp b/dart/common/Resource.hpp index f94d251e3b439..c5ed51e3aa616 100644 --- a/dart/common/Resource.hpp +++ b/dart/common/Resource.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/ResourceRetriever.cpp b/dart/common/ResourceRetriever.cpp index 673dd57b66fb3..5cb8697782563 100644 --- a/dart/common/ResourceRetriever.cpp +++ b/dart/common/ResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/ResourceRetriever.hpp b/dart/common/ResourceRetriever.hpp index 9781d7050221a..55d6d3c5f87d5 100644 --- a/dart/common/ResourceRetriever.hpp +++ b/dart/common/ResourceRetriever.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/SharedLibrary.cpp b/dart/common/SharedLibrary.cpp index 7a8891fbae319..535dca0718f15 100644 --- a/dart/common/SharedLibrary.cpp +++ b/dart/common/SharedLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/SharedLibrary.hpp b/dart/common/SharedLibrary.hpp index cd976f6475a23..70f52a5ed79d1 100644 --- a/dart/common/SharedLibrary.hpp +++ b/dart/common/SharedLibrary.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Signal.cpp b/dart/common/Signal.cpp index 6c0f267b515d8..7a654b78b4265 100644 --- a/dart/common/Signal.cpp +++ b/dart/common/Signal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Signal.hpp b/dart/common/Signal.hpp index 44cffc0c56e90..ca4e6889f97aa 100644 --- a/dart/common/Signal.hpp +++ b/dart/common/Signal.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Singleton.hpp b/dart/common/Singleton.hpp index c1a724e696b14..301c96b26993f 100644 --- a/dart/common/Singleton.hpp +++ b/dart/common/Singleton.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/SmartPointer.hpp b/dart/common/SmartPointer.hpp index 8e79d007a316c..74e15683878e1 100644 --- a/dart/common/SmartPointer.hpp +++ b/dart/common/SmartPointer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/SpecializedForAspect.hpp b/dart/common/SpecializedForAspect.hpp index 0a10bd1178363..133a08167f227 100644 --- a/dart/common/SpecializedForAspect.hpp +++ b/dart/common/SpecializedForAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/StlHelpers.hpp b/dart/common/StlHelpers.hpp index 844b2489720f7..10ddd829b2896 100644 --- a/dart/common/StlHelpers.hpp +++ b/dart/common/StlHelpers.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Subject.cpp b/dart/common/Subject.cpp index bf9c05a6a2489..54aadec3be472 100644 --- a/dart/common/Subject.cpp +++ b/dart/common/Subject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Subject.hpp b/dart/common/Subject.hpp index 03c531b103b24..f859cfe5564d3 100644 --- a/dart/common/Subject.hpp +++ b/dart/common/Subject.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Timer.cpp b/dart/common/Timer.cpp index c42abd90a4a45..9d5f23504f880 100644 --- a/dart/common/Timer.cpp +++ b/dart/common/Timer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Timer.hpp b/dart/common/Timer.hpp index b302d680dae75..e725e1c477866 100644 --- a/dart/common/Timer.hpp +++ b/dart/common/Timer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Uri.cpp b/dart/common/Uri.cpp index 8bd37687bef80..2bd41719a1d62 100644 --- a/dart/common/Uri.cpp +++ b/dart/common/Uri.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Uri.hpp b/dart/common/Uri.hpp index 61893bae07c89..24be8bceefebc 100644 --- a/dart/common/Uri.hpp +++ b/dart/common/Uri.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/VersionCounter.cpp b/dart/common/VersionCounter.cpp index 550fa2e9c043e..cca90cf11a004 100644 --- a/dart/common/VersionCounter.cpp +++ b/dart/common/VersionCounter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/VersionCounter.hpp b/dart/common/VersionCounter.hpp index 8492eca8282fa..b04dcb7131c42 100644 --- a/dart/common/VersionCounter.hpp +++ b/dart/common/VersionCounter.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/Virtual.hpp b/dart/common/Virtual.hpp index 24bf527a0ece0..57b40f0c19e02 100644 --- a/dart/common/Virtual.hpp +++ b/dart/common/Virtual.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/AlignedAllocator.hpp b/dart/common/detail/AlignedAllocator.hpp index 2d8ebdc3a68e4..91599a03e7590 100644 --- a/dart/common/detail/AlignedAllocator.hpp +++ b/dart/common/detail/AlignedAllocator.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Aspect.hpp b/dart/common/detail/Aspect.hpp index 1e1102323a2a6..d46b0b2c325d7 100644 --- a/dart/common/detail/Aspect.hpp +++ b/dart/common/detail/Aspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/AspectWithVersion.hpp b/dart/common/detail/AspectWithVersion.hpp index 3391dba6f4f36..941420000fb5c 100644 --- a/dart/common/detail/AspectWithVersion.hpp +++ b/dart/common/detail/AspectWithVersion.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Cloneable.hpp b/dart/common/detail/Cloneable.hpp index d9464aa41cdad..12d06b96a7531 100644 --- a/dart/common/detail/Cloneable.hpp +++ b/dart/common/detail/Cloneable.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Composite.hpp b/dart/common/detail/Composite.hpp index 1d3b18bebb716..c4fdb9274daa4 100644 --- a/dart/common/detail/Composite.hpp +++ b/dart/common/detail/Composite.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/CompositeData.hpp b/dart/common/detail/CompositeData.hpp index 3a13aa71163f0..7d2b489d05f2c 100644 --- a/dart/common/detail/CompositeData.hpp +++ b/dart/common/detail/CompositeData.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/CompositeJoiner.hpp b/dart/common/detail/CompositeJoiner.hpp index db23560e21dd6..c5b652cf1dd3a 100644 --- a/dart/common/detail/CompositeJoiner.hpp +++ b/dart/common/detail/CompositeJoiner.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/ConnectionBody.cpp b/dart/common/detail/ConnectionBody.cpp index cc070ce01cb8b..2baa7f5be2dad 100644 --- a/dart/common/detail/ConnectionBody.cpp +++ b/dart/common/detail/ConnectionBody.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/ConnectionBody.hpp b/dart/common/detail/ConnectionBody.hpp index 31d5fae41437c..36f40ae1f69cb 100644 --- a/dart/common/detail/ConnectionBody.hpp +++ b/dart/common/detail/ConnectionBody.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/EmbeddedAspect.hpp b/dart/common/detail/EmbeddedAspect.hpp index 5d719771060da..169678b692be3 100644 --- a/dart/common/detail/EmbeddedAspect.hpp +++ b/dart/common/detail/EmbeddedAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Factory-impl.hpp b/dart/common/detail/Factory-impl.hpp index b88e72b37144d..857a8197f1b25 100644 --- a/dart/common/detail/Factory-impl.hpp +++ b/dart/common/detail/Factory-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/LockableReference-impl.hpp b/dart/common/detail/LockableReference-impl.hpp index 7530d178ce8a9..c3f29caf6649b 100644 --- a/dart/common/detail/LockableReference-impl.hpp +++ b/dart/common/detail/LockableReference-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Memory-impl.hpp b/dart/common/detail/Memory-impl.hpp index f80d6a82f08d5..a4fbcf80ffebd 100644 --- a/dart/common/detail/Memory-impl.hpp +++ b/dart/common/detail/Memory-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/NameManager.hpp b/dart/common/detail/NameManager.hpp index 4c02086aa55f8..53ac420c44244 100644 --- a/dart/common/detail/NameManager.hpp +++ b/dart/common/detail/NameManager.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/NoOp.hpp b/dart/common/detail/NoOp.hpp index a6ca78e19dd77..22ed9829bd6e2 100644 --- a/dart/common/detail/NoOp.hpp +++ b/dart/common/detail/NoOp.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/ProxyAspect.hpp b/dart/common/detail/ProxyAspect.hpp index bb7583408c654..7e6f776236c8d 100644 --- a/dart/common/detail/ProxyAspect.hpp +++ b/dart/common/detail/ProxyAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/RequiresAspect.hpp b/dart/common/detail/RequiresAspect.hpp index a46e11e33c16d..bca28f0dc88fa 100644 --- a/dart/common/detail/RequiresAspect.hpp +++ b/dart/common/detail/RequiresAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/SharedLibraryManager.cpp b/dart/common/detail/SharedLibraryManager.cpp index 8bd05ff8959ac..b7121e4d89623 100644 --- a/dart/common/detail/SharedLibraryManager.cpp +++ b/dart/common/detail/SharedLibraryManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/SharedLibraryManager.hpp b/dart/common/detail/SharedLibraryManager.hpp index e1352bf9dd6ac..1c3f6a9889ccc 100644 --- a/dart/common/detail/SharedLibraryManager.hpp +++ b/dart/common/detail/SharedLibraryManager.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Signal.hpp b/dart/common/detail/Signal.hpp index b974d515d92d2..78f271f2582a5 100644 --- a/dart/common/detail/Signal.hpp +++ b/dart/common/detail/Signal.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/Singleton-impl.hpp b/dart/common/detail/Singleton-impl.hpp index ff00c651a9ee9..1eeb7a354ad4a 100644 --- a/dart/common/detail/Singleton-impl.hpp +++ b/dart/common/detail/Singleton-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/SpecializedForAspect.hpp b/dart/common/detail/SpecializedForAspect.hpp index dd062b1f25c38..6a95bc10c3a9a 100644 --- a/dart/common/detail/SpecializedForAspect.hpp +++ b/dart/common/detail/SpecializedForAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/TemplateJoinerDispatchMacro.hpp b/dart/common/detail/TemplateJoinerDispatchMacro.hpp index f80a32cab2133..460caa1ce91ea 100644 --- a/dart/common/detail/TemplateJoinerDispatchMacro.hpp +++ b/dart/common/detail/TemplateJoinerDispatchMacro.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/detail/sub_ptr.hpp b/dart/common/detail/sub_ptr.hpp index eef9138d628fb..0cd64eeab83e4 100644 --- a/dart/common/detail/sub_ptr.hpp +++ b/dart/common/detail/sub_ptr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/common/sub_ptr.hpp b/dart/common/sub_ptr.hpp index 14e9603c67ff6..aed3894f46fb6 100644 --- a/dart/common/sub_ptr.hpp +++ b/dart/common/sub_ptr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BalanceConstraint.cpp b/dart/constraint/BalanceConstraint.cpp index 332f1ae02bfc7..b630cf2962ed7 100644 --- a/dart/constraint/BalanceConstraint.cpp +++ b/dart/constraint/BalanceConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BalanceConstraint.hpp b/dart/constraint/BalanceConstraint.hpp index 9874f10d6a0f6..c1ccda2b2bd35 100644 --- a/dart/constraint/BalanceConstraint.hpp +++ b/dart/constraint/BalanceConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BallJointConstraint.cpp b/dart/constraint/BallJointConstraint.cpp index 2fde4569490d7..0d0a9fcf6a1f6 100644 --- a/dart/constraint/BallJointConstraint.cpp +++ b/dart/constraint/BallJointConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BallJointConstraint.hpp b/dart/constraint/BallJointConstraint.hpp index 82ed63c9206ff..a06d5be5666c7 100644 --- a/dart/constraint/BallJointConstraint.hpp +++ b/dart/constraint/BallJointConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BoxedLcpConstraintSolver.cpp b/dart/constraint/BoxedLcpConstraintSolver.cpp index 9b0ca10bb757d..d35383a9ad5b5 100644 --- a/dart/constraint/BoxedLcpConstraintSolver.cpp +++ b/dart/constraint/BoxedLcpConstraintSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BoxedLcpConstraintSolver.hpp b/dart/constraint/BoxedLcpConstraintSolver.hpp index f739cd379957a..28344e9dd4077 100644 --- a/dart/constraint/BoxedLcpConstraintSolver.hpp +++ b/dart/constraint/BoxedLcpConstraintSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/BoxedLcpSolver.hpp b/dart/constraint/BoxedLcpSolver.hpp index 08594606fef30..b5b0c12fb9e24 100644 --- a/dart/constraint/BoxedLcpSolver.hpp +++ b/dart/constraint/BoxedLcpSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ConstrainedGroup.cpp b/dart/constraint/ConstrainedGroup.cpp index 5804fcbdcb104..f858f944cdd4f 100644 --- a/dart/constraint/ConstrainedGroup.cpp +++ b/dart/constraint/ConstrainedGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ConstrainedGroup.hpp b/dart/constraint/ConstrainedGroup.hpp index 60cc811627049..fbef611db7447 100644 --- a/dart/constraint/ConstrainedGroup.hpp +++ b/dart/constraint/ConstrainedGroup.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ConstraintBase.cpp b/dart/constraint/ConstraintBase.cpp index abdeed5f72dc3..956172e88baff 100644 --- a/dart/constraint/ConstraintBase.cpp +++ b/dart/constraint/ConstraintBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ConstraintBase.hpp b/dart/constraint/ConstraintBase.hpp index 22b32287235e8..d43f0731165d0 100644 --- a/dart/constraint/ConstraintBase.hpp +++ b/dart/constraint/ConstraintBase.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ConstraintSolver.cpp b/dart/constraint/ConstraintSolver.cpp index 8bb874558ffcc..4667397842576 100644 --- a/dart/constraint/ConstraintSolver.cpp +++ b/dart/constraint/ConstraintSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ConstraintSolver.hpp b/dart/constraint/ConstraintSolver.hpp index 2dcac77ec49c9..99700f32dc2ef 100644 --- a/dart/constraint/ConstraintSolver.hpp +++ b/dart/constraint/ConstraintSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ContactConstraint.cpp b/dart/constraint/ContactConstraint.cpp index f4569c484ffca..491f5af7c5cf6 100644 --- a/dart/constraint/ContactConstraint.cpp +++ b/dart/constraint/ContactConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ContactConstraint.hpp b/dart/constraint/ContactConstraint.hpp index 272ddf67d904f..fbe362995f2c5 100644 --- a/dart/constraint/ContactConstraint.hpp +++ b/dart/constraint/ContactConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/DantzigBoxedLcpSolver.cpp b/dart/constraint/DantzigBoxedLcpSolver.cpp index a92c1d4b28fb8..8c1e3d93f6939 100644 --- a/dart/constraint/DantzigBoxedLcpSolver.cpp +++ b/dart/constraint/DantzigBoxedLcpSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/DantzigBoxedLcpSolver.hpp b/dart/constraint/DantzigBoxedLcpSolver.hpp index 155fd06ce574c..6825f994d8e9c 100644 --- a/dart/constraint/DantzigBoxedLcpSolver.hpp +++ b/dart/constraint/DantzigBoxedLcpSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/DantzigLCPSolver.cpp b/dart/constraint/DantzigLCPSolver.cpp index 67b3d34177218..8a4d4fc8e107e 100644 --- a/dart/constraint/DantzigLCPSolver.cpp +++ b/dart/constraint/DantzigLCPSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/DantzigLCPSolver.hpp b/dart/constraint/DantzigLCPSolver.hpp index 95ece479ab4e9..ef3a90886b47b 100644 --- a/dart/constraint/DantzigLCPSolver.hpp +++ b/dart/constraint/DantzigLCPSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/JointConstraint.cpp b/dart/constraint/JointConstraint.cpp index 84064af58b9a3..6e683435c7f24 100644 --- a/dart/constraint/JointConstraint.cpp +++ b/dart/constraint/JointConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/JointConstraint.hpp b/dart/constraint/JointConstraint.hpp index 828725746b930..e1b8eb2bd9af8 100644 --- a/dart/constraint/JointConstraint.hpp +++ b/dart/constraint/JointConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/JointCoulombFrictionConstraint.cpp b/dart/constraint/JointCoulombFrictionConstraint.cpp index a5bd4fee5cde0..d5017f8930e86 100644 --- a/dart/constraint/JointCoulombFrictionConstraint.cpp +++ b/dart/constraint/JointCoulombFrictionConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/JointCoulombFrictionConstraint.hpp b/dart/constraint/JointCoulombFrictionConstraint.hpp index 7b3faba5be788..4b9aa884ae4a7 100644 --- a/dart/constraint/JointCoulombFrictionConstraint.hpp +++ b/dart/constraint/JointCoulombFrictionConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/JointLimitConstraint.cpp b/dart/constraint/JointLimitConstraint.cpp index 162b447b10bb6..334073483ce4a 100644 --- a/dart/constraint/JointLimitConstraint.cpp +++ b/dart/constraint/JointLimitConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/JointLimitConstraint.hpp b/dart/constraint/JointLimitConstraint.hpp index 0a0c2d71aa533..13f2cc73a976a 100644 --- a/dart/constraint/JointLimitConstraint.hpp +++ b/dart/constraint/JointLimitConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/LCPSolver.cpp b/dart/constraint/LCPSolver.cpp index fac3dc917fa4a..d09d764358304 100644 --- a/dart/constraint/LCPSolver.cpp +++ b/dart/constraint/LCPSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/LCPSolver.hpp b/dart/constraint/LCPSolver.hpp index 21ddbf0791ca9..9e1a3b8de975e 100644 --- a/dart/constraint/LCPSolver.hpp +++ b/dart/constraint/LCPSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/MimicMotorConstraint.cpp b/dart/constraint/MimicMotorConstraint.cpp index 24c0d8e4b2070..1f4af4d610b6e 100644 --- a/dart/constraint/MimicMotorConstraint.cpp +++ b/dart/constraint/MimicMotorConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/MimicMotorConstraint.hpp b/dart/constraint/MimicMotorConstraint.hpp index c5e029652a099..c063f83217002 100644 --- a/dart/constraint/MimicMotorConstraint.hpp +++ b/dart/constraint/MimicMotorConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/PGSLCPSolver.cpp b/dart/constraint/PGSLCPSolver.cpp index f24ef6a01c731..a1d6ce56201d9 100644 --- a/dart/constraint/PGSLCPSolver.cpp +++ b/dart/constraint/PGSLCPSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/PGSLCPSolver.hpp b/dart/constraint/PGSLCPSolver.hpp index d8173e51545f6..8b51de6cea497 100644 --- a/dart/constraint/PGSLCPSolver.hpp +++ b/dart/constraint/PGSLCPSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/PgsBoxedLcpSolver.cpp b/dart/constraint/PgsBoxedLcpSolver.cpp index 9bdf42c66516c..89689bad63000 100644 --- a/dart/constraint/PgsBoxedLcpSolver.cpp +++ b/dart/constraint/PgsBoxedLcpSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/PgsBoxedLcpSolver.hpp b/dart/constraint/PgsBoxedLcpSolver.hpp index 3dcc3a673c624..9ddd170ce314a 100644 --- a/dart/constraint/PgsBoxedLcpSolver.hpp +++ b/dart/constraint/PgsBoxedLcpSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ServoMotorConstraint.cpp b/dart/constraint/ServoMotorConstraint.cpp index af1f33fed851a..7e626ef311f2d 100644 --- a/dart/constraint/ServoMotorConstraint.cpp +++ b/dart/constraint/ServoMotorConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/ServoMotorConstraint.hpp b/dart/constraint/ServoMotorConstraint.hpp index 26d92707b123b..09c8fd419737c 100644 --- a/dart/constraint/ServoMotorConstraint.hpp +++ b/dart/constraint/ServoMotorConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/SmartPointer.hpp b/dart/constraint/SmartPointer.hpp index 79e389a759772..313dc0cb65e8b 100644 --- a/dart/constraint/SmartPointer.hpp +++ b/dart/constraint/SmartPointer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/SoftContactConstraint.cpp b/dart/constraint/SoftContactConstraint.cpp index 737b25be526e6..aad2aa9bcb900 100644 --- a/dart/constraint/SoftContactConstraint.cpp +++ b/dart/constraint/SoftContactConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/SoftContactConstraint.hpp b/dart/constraint/SoftContactConstraint.hpp index 3810547fc98bf..ef888f7803f00 100644 --- a/dart/constraint/SoftContactConstraint.hpp +++ b/dart/constraint/SoftContactConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/WeldJointConstraint.cpp b/dart/constraint/WeldJointConstraint.cpp index 2baa0beaf74a9..b65772920fcbd 100644 --- a/dart/constraint/WeldJointConstraint.cpp +++ b/dart/constraint/WeldJointConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/WeldJointConstraint.hpp b/dart/constraint/WeldJointConstraint.hpp index 279e4b49aa18a..d5de42b15da28 100644 --- a/dart/constraint/WeldJointConstraint.hpp +++ b/dart/constraint/WeldJointConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/constraint/detail/BoxedLcpSolver-impl.hpp b/dart/constraint/detail/BoxedLcpSolver-impl.hpp index d7a6d38175310..b4ca4d109815c 100644 --- a/dart/constraint/detail/BoxedLcpSolver-impl.hpp +++ b/dart/constraint/detail/BoxedLcpSolver-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dart.hpp b/dart/dart.hpp index 163cf964aacd5..3ef4910f579de 100644 --- a/dart/dart.hpp +++ b/dart/dart.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ArrowShape.cpp b/dart/dynamics/ArrowShape.cpp index ee8963e24b2f5..4f51ebb7b5b02 100644 --- a/dart/dynamics/ArrowShape.cpp +++ b/dart/dynamics/ArrowShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ArrowShape.hpp b/dart/dynamics/ArrowShape.hpp index a786361e14346..fe15f0699021a 100644 --- a/dart/dynamics/ArrowShape.hpp +++ b/dart/dynamics/ArrowShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/AssimpInputResourceAdaptor.cpp b/dart/dynamics/AssimpInputResourceAdaptor.cpp index 1a8c0874a9fb9..15b26cfc8c50d 100644 --- a/dart/dynamics/AssimpInputResourceAdaptor.cpp +++ b/dart/dynamics/AssimpInputResourceAdaptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/AssimpInputResourceAdaptor.hpp b/dart/dynamics/AssimpInputResourceAdaptor.hpp index 11aee0e99b127..9eaf52679af7b 100644 --- a/dart/dynamics/AssimpInputResourceAdaptor.hpp +++ b/dart/dynamics/AssimpInputResourceAdaptor.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/BallJoint.cpp b/dart/dynamics/BallJoint.cpp index 7759719be7324..2e125dffe49ff 100644 --- a/dart/dynamics/BallJoint.cpp +++ b/dart/dynamics/BallJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/BallJoint.hpp b/dart/dynamics/BallJoint.hpp index 4bfe239c504a4..7de2f491c791f 100644 --- a/dart/dynamics/BallJoint.hpp +++ b/dart/dynamics/BallJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/BodyNode.cpp b/dart/dynamics/BodyNode.cpp index ab276245ae6c5..e026b2e831fbd 100644 --- a/dart/dynamics/BodyNode.cpp +++ b/dart/dynamics/BodyNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/BodyNode.hpp b/dart/dynamics/BodyNode.hpp index f2830e7effdef..93d15a6624cfc 100644 --- a/dart/dynamics/BodyNode.hpp +++ b/dart/dynamics/BodyNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/BoxShape.cpp b/dart/dynamics/BoxShape.cpp index 6583377d70042..bec3ce01c0879 100644 --- a/dart/dynamics/BoxShape.cpp +++ b/dart/dynamics/BoxShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/BoxShape.hpp b/dart/dynamics/BoxShape.hpp index 6f5f13140f28b..56d5214011cf4 100644 --- a/dart/dynamics/BoxShape.hpp +++ b/dart/dynamics/BoxShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Branch.cpp b/dart/dynamics/Branch.cpp index 88cfafd1681be..8ac000c9c9f44 100644 --- a/dart/dynamics/Branch.cpp +++ b/dart/dynamics/Branch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Branch.hpp b/dart/dynamics/Branch.hpp index a936e0ef7dd24..dc7802fb2fb28 100644 --- a/dart/dynamics/Branch.hpp +++ b/dart/dynamics/Branch.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/CapsuleShape.cpp b/dart/dynamics/CapsuleShape.cpp index da1d4f1cb7bc9..9a5fe47a8b4c5 100644 --- a/dart/dynamics/CapsuleShape.cpp +++ b/dart/dynamics/CapsuleShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/CapsuleShape.hpp b/dart/dynamics/CapsuleShape.hpp index f1c2a9b616f0d..6477a7eb016d8 100644 --- a/dart/dynamics/CapsuleShape.hpp +++ b/dart/dynamics/CapsuleShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Chain.cpp b/dart/dynamics/Chain.cpp index b2633f792eb9e..e62048eb5b8e1 100644 --- a/dart/dynamics/Chain.cpp +++ b/dart/dynamics/Chain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Chain.hpp b/dart/dynamics/Chain.hpp index 0ae459b0594b6..890dcedb855ee 100644 --- a/dart/dynamics/Chain.hpp +++ b/dart/dynamics/Chain.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/CompositeNode.hpp b/dart/dynamics/CompositeNode.hpp index fc660905633d0..f8ca3d58575fa 100644 --- a/dart/dynamics/CompositeNode.hpp +++ b/dart/dynamics/CompositeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ConeShape.cpp b/dart/dynamics/ConeShape.cpp index 716b8a1ced343..0d78d3e5aeb71 100644 --- a/dart/dynamics/ConeShape.cpp +++ b/dart/dynamics/ConeShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ConeShape.hpp b/dart/dynamics/ConeShape.hpp index 530ad393b7925..c0acbb2c2f766 100644 --- a/dart/dynamics/ConeShape.hpp +++ b/dart/dynamics/ConeShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/CylinderShape.cpp b/dart/dynamics/CylinderShape.cpp index d9427154a07ba..3f9c970d6ce60 100644 --- a/dart/dynamics/CylinderShape.cpp +++ b/dart/dynamics/CylinderShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/CylinderShape.hpp b/dart/dynamics/CylinderShape.hpp index 858caf784d7e7..fab6e54a08a5b 100644 --- a/dart/dynamics/CylinderShape.hpp +++ b/dart/dynamics/CylinderShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/DegreeOfFreedom.cpp b/dart/dynamics/DegreeOfFreedom.cpp index ec7c15f1fa4a1..390b8ceafb471 100644 --- a/dart/dynamics/DegreeOfFreedom.cpp +++ b/dart/dynamics/DegreeOfFreedom.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/DegreeOfFreedom.hpp b/dart/dynamics/DegreeOfFreedom.hpp index 17446faf59822..121079733806f 100644 --- a/dart/dynamics/DegreeOfFreedom.hpp +++ b/dart/dynamics/DegreeOfFreedom.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EllipsoidShape.cpp b/dart/dynamics/EllipsoidShape.cpp index a79a941326f37..16b3e6d812dd6 100644 --- a/dart/dynamics/EllipsoidShape.cpp +++ b/dart/dynamics/EllipsoidShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EllipsoidShape.hpp b/dart/dynamics/EllipsoidShape.hpp index 111a9d011f725..1233490380326 100644 --- a/dart/dynamics/EllipsoidShape.hpp +++ b/dart/dynamics/EllipsoidShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EndEffector.cpp b/dart/dynamics/EndEffector.cpp index 80e8a3ef06e78..98c5c149638fe 100644 --- a/dart/dynamics/EndEffector.cpp +++ b/dart/dynamics/EndEffector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EndEffector.hpp b/dart/dynamics/EndEffector.hpp index a2649fe886c2b..3882b13889641 100644 --- a/dart/dynamics/EndEffector.hpp +++ b/dart/dynamics/EndEffector.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Entity.cpp b/dart/dynamics/Entity.cpp index d2a7d4517e282..30eb34c55fb5e 100644 --- a/dart/dynamics/Entity.cpp +++ b/dart/dynamics/Entity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Entity.hpp b/dart/dynamics/Entity.hpp index 322e2aef46369..8bfca53cf2e9e 100644 --- a/dart/dynamics/Entity.hpp +++ b/dart/dynamics/Entity.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EntityNode.hpp b/dart/dynamics/EntityNode.hpp index 69820847c7be1..a4c1d1499f5e2 100644 --- a/dart/dynamics/EntityNode.hpp +++ b/dart/dynamics/EntityNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EulerJoint.cpp b/dart/dynamics/EulerJoint.cpp index e3e27d0548fa5..6b958f077a7d2 100644 --- a/dart/dynamics/EulerJoint.cpp +++ b/dart/dynamics/EulerJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/EulerJoint.hpp b/dart/dynamics/EulerJoint.hpp index d4160f6efd547..d23e8476145c6 100644 --- a/dart/dynamics/EulerJoint.hpp +++ b/dart/dynamics/EulerJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/FixedFrame.cpp b/dart/dynamics/FixedFrame.cpp index 41a845a37684e..4f1b3f3f5e986 100644 --- a/dart/dynamics/FixedFrame.cpp +++ b/dart/dynamics/FixedFrame.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/FixedFrame.hpp b/dart/dynamics/FixedFrame.hpp index f990d4a0c4373..01cbfc909491d 100644 --- a/dart/dynamics/FixedFrame.hpp +++ b/dart/dynamics/FixedFrame.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/FixedJacobianNode.cpp b/dart/dynamics/FixedJacobianNode.cpp index 21a2dc59b4212..5e92a3aaeacfe 100644 --- a/dart/dynamics/FixedJacobianNode.cpp +++ b/dart/dynamics/FixedJacobianNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/FixedJacobianNode.hpp b/dart/dynamics/FixedJacobianNode.hpp index fe499605f2011..3acb6df1b6fc8 100644 --- a/dart/dynamics/FixedJacobianNode.hpp +++ b/dart/dynamics/FixedJacobianNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Frame.cpp b/dart/dynamics/Frame.cpp index f4c9fbeebf85f..c5e14abf84136 100644 --- a/dart/dynamics/Frame.cpp +++ b/dart/dynamics/Frame.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Frame.hpp b/dart/dynamics/Frame.hpp index 88c1abbaf442d..a2c6844d2c330 100644 --- a/dart/dynamics/Frame.hpp +++ b/dart/dynamics/Frame.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/FreeJoint.cpp b/dart/dynamics/FreeJoint.cpp index fff8a57eca890..f329aa2aaecde 100644 --- a/dart/dynamics/FreeJoint.cpp +++ b/dart/dynamics/FreeJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/FreeJoint.hpp b/dart/dynamics/FreeJoint.hpp index 8224eb84daa80..b4cecae9679c1 100644 --- a/dart/dynamics/FreeJoint.hpp +++ b/dart/dynamics/FreeJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/GenericJoint.hpp b/dart/dynamics/GenericJoint.hpp index e977feed28ce0..7b20818c4357e 100644 --- a/dart/dynamics/GenericJoint.hpp +++ b/dart/dynamics/GenericJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Group.cpp b/dart/dynamics/Group.cpp index d632baa6d1658..4e7d3ec756deb 100644 --- a/dart/dynamics/Group.cpp +++ b/dart/dynamics/Group.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Group.hpp b/dart/dynamics/Group.hpp index af4470f877bcf..9c3e0993deade 100644 --- a/dart/dynamics/Group.hpp +++ b/dart/dynamics/Group.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/HeightmapShape.hpp b/dart/dynamics/HeightmapShape.hpp index 5bd30a5112529..aceb89663a5ea 100644 --- a/dart/dynamics/HeightmapShape.hpp +++ b/dart/dynamics/HeightmapShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/HierarchicalIK.cpp b/dart/dynamics/HierarchicalIK.cpp index 5df45075a546f..8b1f6c5be9552 100644 --- a/dart/dynamics/HierarchicalIK.cpp +++ b/dart/dynamics/HierarchicalIK.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/HierarchicalIK.hpp b/dart/dynamics/HierarchicalIK.hpp index 1dd43438f0162..39207a8f1c77e 100644 --- a/dart/dynamics/HierarchicalIK.hpp +++ b/dart/dynamics/HierarchicalIK.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/IkFast.cpp b/dart/dynamics/IkFast.cpp index a58d49b799bf6..55d1ad7d0da69 100644 --- a/dart/dynamics/IkFast.cpp +++ b/dart/dynamics/IkFast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/IkFast.hpp b/dart/dynamics/IkFast.hpp index 8dcb5575eb117..c1051f0fa6c5d 100644 --- a/dart/dynamics/IkFast.hpp +++ b/dart/dynamics/IkFast.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Inertia.cpp b/dart/dynamics/Inertia.cpp index 95a7439a25f4b..a33f27519b8d0 100644 --- a/dart/dynamics/Inertia.cpp +++ b/dart/dynamics/Inertia.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Inertia.hpp b/dart/dynamics/Inertia.hpp index 11e4b18de06d3..36e4a63d602d4 100644 --- a/dart/dynamics/Inertia.hpp +++ b/dart/dynamics/Inertia.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/InvalidIndex.hpp b/dart/dynamics/InvalidIndex.hpp index 64134928188d2..2e57f194193b4 100644 --- a/dart/dynamics/InvalidIndex.hpp +++ b/dart/dynamics/InvalidIndex.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/InverseKinematics.cpp b/dart/dynamics/InverseKinematics.cpp index bceb421187079..db2eecd43c40a 100644 --- a/dart/dynamics/InverseKinematics.cpp +++ b/dart/dynamics/InverseKinematics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/InverseKinematics.hpp b/dart/dynamics/InverseKinematics.hpp index 6e6fce80e8699..417426a974490 100644 --- a/dart/dynamics/InverseKinematics.hpp +++ b/dart/dynamics/InverseKinematics.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/JacobianNode.cpp b/dart/dynamics/JacobianNode.cpp index 1eb97324194e0..b27b162d9eea1 100644 --- a/dart/dynamics/JacobianNode.cpp +++ b/dart/dynamics/JacobianNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/JacobianNode.hpp b/dart/dynamics/JacobianNode.hpp index 11f17d1a0195a..9523b6a03316a 100644 --- a/dart/dynamics/JacobianNode.hpp +++ b/dart/dynamics/JacobianNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Joint.cpp b/dart/dynamics/Joint.cpp index bbd96bab158ec..eedecb13c8096 100644 --- a/dart/dynamics/Joint.cpp +++ b/dart/dynamics/Joint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Joint.hpp b/dart/dynamics/Joint.hpp index 0e71a8c5a086a..181cd1893d3d1 100644 --- a/dart/dynamics/Joint.hpp +++ b/dart/dynamics/Joint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/LineSegmentShape.cpp b/dart/dynamics/LineSegmentShape.cpp index 5bed930d79a19..cc0d3b8d0a075 100644 --- a/dart/dynamics/LineSegmentShape.cpp +++ b/dart/dynamics/LineSegmentShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/LineSegmentShape.hpp b/dart/dynamics/LineSegmentShape.hpp index a9cff02f0a6f4..3298ec30dbdd9 100644 --- a/dart/dynamics/LineSegmentShape.hpp +++ b/dart/dynamics/LineSegmentShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Linkage.cpp b/dart/dynamics/Linkage.cpp index 818d3e4f5e925..808c9b79cf011 100644 --- a/dart/dynamics/Linkage.cpp +++ b/dart/dynamics/Linkage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Linkage.hpp b/dart/dynamics/Linkage.hpp index a12bcab23609d..411509288853a 100644 --- a/dart/dynamics/Linkage.hpp +++ b/dart/dynamics/Linkage.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Marker.cpp b/dart/dynamics/Marker.cpp index a5e9f58d4d57c..9f80da5e0858a 100644 --- a/dart/dynamics/Marker.cpp +++ b/dart/dynamics/Marker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Marker.hpp b/dart/dynamics/Marker.hpp index 686a3ad0e860e..604b8ea62a4ae 100644 --- a/dart/dynamics/Marker.hpp +++ b/dart/dynamics/Marker.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MeshShape.cpp b/dart/dynamics/MeshShape.cpp index 89c8a12ed0e33..00430522e4781 100644 --- a/dart/dynamics/MeshShape.cpp +++ b/dart/dynamics/MeshShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MeshShape.hpp b/dart/dynamics/MeshShape.hpp index d4d9d54f9b1e0..af72f74c408a6 100644 --- a/dart/dynamics/MeshShape.hpp +++ b/dart/dynamics/MeshShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MetaSkeleton.cpp b/dart/dynamics/MetaSkeleton.cpp index c07c8e9ccd56f..ecf4a394fe416 100644 --- a/dart/dynamics/MetaSkeleton.cpp +++ b/dart/dynamics/MetaSkeleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MetaSkeleton.hpp b/dart/dynamics/MetaSkeleton.hpp index 7f66281e59490..ecc1749c3c2de 100644 --- a/dart/dynamics/MetaSkeleton.hpp +++ b/dart/dynamics/MetaSkeleton.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MultiSphereConvexHullShape.cpp b/dart/dynamics/MultiSphereConvexHullShape.cpp index 5449f91fa3da0..160d28c5dbe82 100644 --- a/dart/dynamics/MultiSphereConvexHullShape.cpp +++ b/dart/dynamics/MultiSphereConvexHullShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MultiSphereConvexHullShape.hpp b/dart/dynamics/MultiSphereConvexHullShape.hpp index 59eddadbf3daa..25dc845f5912c 100644 --- a/dart/dynamics/MultiSphereConvexHullShape.hpp +++ b/dart/dynamics/MultiSphereConvexHullShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/MultiSphereShape.hpp b/dart/dynamics/MultiSphereShape.hpp index e474767d97113..5492c591cde3e 100644 --- a/dart/dynamics/MultiSphereShape.hpp +++ b/dart/dynamics/MultiSphereShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Node.cpp b/dart/dynamics/Node.cpp index 10660fb4b6c8b..8c6c3a55c2175 100644 --- a/dart/dynamics/Node.cpp +++ b/dart/dynamics/Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Node.hpp b/dart/dynamics/Node.hpp index ae7f89d9e36d2..fb0899878f5f1 100644 --- a/dart/dynamics/Node.hpp +++ b/dart/dynamics/Node.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/NodeManagerJoiner.hpp b/dart/dynamics/NodeManagerJoiner.hpp index 0a11022260e02..24781a23c5e7f 100644 --- a/dart/dynamics/NodeManagerJoiner.hpp +++ b/dart/dynamics/NodeManagerJoiner.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PlanarJoint.cpp b/dart/dynamics/PlanarJoint.cpp index 8033f921d43df..504e02c6e728f 100644 --- a/dart/dynamics/PlanarJoint.cpp +++ b/dart/dynamics/PlanarJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PlanarJoint.hpp b/dart/dynamics/PlanarJoint.hpp index 1dd761e07b177..afddf8de83d43 100644 --- a/dart/dynamics/PlanarJoint.hpp +++ b/dart/dynamics/PlanarJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PlaneShape.cpp b/dart/dynamics/PlaneShape.cpp index 2ef70ed8a53b2..70806a2abdd96 100644 --- a/dart/dynamics/PlaneShape.cpp +++ b/dart/dynamics/PlaneShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PlaneShape.hpp b/dart/dynamics/PlaneShape.hpp index 36a087330b5a7..3f3a2a41522a0 100644 --- a/dart/dynamics/PlaneShape.hpp +++ b/dart/dynamics/PlaneShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PointMass.cpp b/dart/dynamics/PointMass.cpp index eab7699a0adca..5cd0c1963f6b4 100644 --- a/dart/dynamics/PointMass.cpp +++ b/dart/dynamics/PointMass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PointMass.hpp b/dart/dynamics/PointMass.hpp index ad6cb623dcd66..38cf4005f51fd 100644 --- a/dart/dynamics/PointMass.hpp +++ b/dart/dynamics/PointMass.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PrismaticJoint.cpp b/dart/dynamics/PrismaticJoint.cpp index 151f4ccbd0b39..e1d9e4563e03c 100644 --- a/dart/dynamics/PrismaticJoint.cpp +++ b/dart/dynamics/PrismaticJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/PrismaticJoint.hpp b/dart/dynamics/PrismaticJoint.hpp index 08933c56ebf14..6a7925cba4735 100644 --- a/dart/dynamics/PrismaticJoint.hpp +++ b/dart/dynamics/PrismaticJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ReferentialSkeleton.cpp b/dart/dynamics/ReferentialSkeleton.cpp index 456e8bdc3b237..ace36fbe35f93 100644 --- a/dart/dynamics/ReferentialSkeleton.cpp +++ b/dart/dynamics/ReferentialSkeleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ReferentialSkeleton.hpp b/dart/dynamics/ReferentialSkeleton.hpp index bf13b79d398da..a3e6c01d6abd0 100644 --- a/dart/dynamics/ReferentialSkeleton.hpp +++ b/dart/dynamics/ReferentialSkeleton.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/RevoluteJoint.cpp b/dart/dynamics/RevoluteJoint.cpp index 154432b78f499..1b30e536511af 100644 --- a/dart/dynamics/RevoluteJoint.cpp +++ b/dart/dynamics/RevoluteJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/RevoluteJoint.hpp b/dart/dynamics/RevoluteJoint.hpp index ff431cf5e73cc..fc747fa22e84f 100644 --- a/dart/dynamics/RevoluteJoint.hpp +++ b/dart/dynamics/RevoluteJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ScrewJoint.cpp b/dart/dynamics/ScrewJoint.cpp index 4eaa15fc4e196..87c7e9660ec04 100644 --- a/dart/dynamics/ScrewJoint.cpp +++ b/dart/dynamics/ScrewJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ScrewJoint.hpp b/dart/dynamics/ScrewJoint.hpp index 0605ff4ba4bfa..5e57cdefced0e 100644 --- a/dart/dynamics/ScrewJoint.hpp +++ b/dart/dynamics/ScrewJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Shape.cpp b/dart/dynamics/Shape.cpp index 3d3d2554c4be7..4a6357961b63f 100644 --- a/dart/dynamics/Shape.cpp +++ b/dart/dynamics/Shape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Shape.hpp b/dart/dynamics/Shape.hpp index b26d0ffee03de..5a1f3f93880a8 100644 --- a/dart/dynamics/Shape.hpp +++ b/dart/dynamics/Shape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ShapeFrame.cpp b/dart/dynamics/ShapeFrame.cpp index 85bb9b1b3ceee..bb8ed1c704708 100644 --- a/dart/dynamics/ShapeFrame.cpp +++ b/dart/dynamics/ShapeFrame.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ShapeFrame.hpp b/dart/dynamics/ShapeFrame.hpp index 42f96fbebb783..f94bdbdbd783a 100644 --- a/dart/dynamics/ShapeFrame.hpp +++ b/dart/dynamics/ShapeFrame.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ShapeNode.cpp b/dart/dynamics/ShapeNode.cpp index 0ec70bff0142d..1292d59d23dfe 100644 --- a/dart/dynamics/ShapeNode.cpp +++ b/dart/dynamics/ShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ShapeNode.hpp b/dart/dynamics/ShapeNode.hpp index cf89290fb8ee4..e079d73e3bc30 100644 --- a/dart/dynamics/ShapeNode.hpp +++ b/dart/dynamics/ShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SharedLibraryIkFast.cpp b/dart/dynamics/SharedLibraryIkFast.cpp index cf3da4d515644..d97440443f50a 100644 --- a/dart/dynamics/SharedLibraryIkFast.cpp +++ b/dart/dynamics/SharedLibraryIkFast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SharedLibraryIkFast.hpp b/dart/dynamics/SharedLibraryIkFast.hpp index 26ccb533b5be4..20d751418f934 100644 --- a/dart/dynamics/SharedLibraryIkFast.hpp +++ b/dart/dynamics/SharedLibraryIkFast.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SimpleFrame.cpp b/dart/dynamics/SimpleFrame.cpp index 40ffb6776b5c9..f05b5b4fea4ec 100644 --- a/dart/dynamics/SimpleFrame.cpp +++ b/dart/dynamics/SimpleFrame.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SimpleFrame.hpp b/dart/dynamics/SimpleFrame.hpp index 0defab5bea12c..26da22a77b746 100644 --- a/dart/dynamics/SimpleFrame.hpp +++ b/dart/dynamics/SimpleFrame.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Skeleton.cpp b/dart/dynamics/Skeleton.cpp index 6c3d66bf0786e..e23c436f31e3b 100644 --- a/dart/dynamics/Skeleton.cpp +++ b/dart/dynamics/Skeleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/Skeleton.hpp b/dart/dynamics/Skeleton.hpp index 6c344d00ff77f..a404672861c49 100644 --- a/dart/dynamics/Skeleton.hpp +++ b/dart/dynamics/Skeleton.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SmartPointer.hpp b/dart/dynamics/SmartPointer.hpp index 229ded5270532..ed5476d50291b 100644 --- a/dart/dynamics/SmartPointer.hpp +++ b/dart/dynamics/SmartPointer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SoftBodyNode.cpp b/dart/dynamics/SoftBodyNode.cpp index 5dd1d7ff67186..d9f8311e28609 100644 --- a/dart/dynamics/SoftBodyNode.cpp +++ b/dart/dynamics/SoftBodyNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SoftBodyNode.hpp b/dart/dynamics/SoftBodyNode.hpp index e647869f12a42..7e4f5439cb232 100644 --- a/dart/dynamics/SoftBodyNode.hpp +++ b/dart/dynamics/SoftBodyNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SoftMeshShape.cpp b/dart/dynamics/SoftMeshShape.cpp index 99fa879a7814d..42724a0a41e2e 100644 --- a/dart/dynamics/SoftMeshShape.cpp +++ b/dart/dynamics/SoftMeshShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SoftMeshShape.hpp b/dart/dynamics/SoftMeshShape.hpp index fe0f6238eb4e9..a14f0355dbbee 100644 --- a/dart/dynamics/SoftMeshShape.hpp +++ b/dart/dynamics/SoftMeshShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SpecializedNodeManager.hpp b/dart/dynamics/SpecializedNodeManager.hpp index c53388de7a5c9..9c5fabfe172c0 100644 --- a/dart/dynamics/SpecializedNodeManager.hpp +++ b/dart/dynamics/SpecializedNodeManager.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SphereShape.cpp b/dart/dynamics/SphereShape.cpp index 66789ebcd6acc..7570cf9ecb5a1 100644 --- a/dart/dynamics/SphereShape.cpp +++ b/dart/dynamics/SphereShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/SphereShape.hpp b/dart/dynamics/SphereShape.hpp index d18adf84dd094..d5881579c29ae 100644 --- a/dart/dynamics/SphereShape.hpp +++ b/dart/dynamics/SphereShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/TemplatedJacobianNode.hpp b/dart/dynamics/TemplatedJacobianNode.hpp index 688c371784f6c..7b3852a39e16f 100644 --- a/dart/dynamics/TemplatedJacobianNode.hpp +++ b/dart/dynamics/TemplatedJacobianNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/TranslationalJoint.cpp b/dart/dynamics/TranslationalJoint.cpp index b3408e4125dc8..96264eed21c07 100644 --- a/dart/dynamics/TranslationalJoint.cpp +++ b/dart/dynamics/TranslationalJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/TranslationalJoint.hpp b/dart/dynamics/TranslationalJoint.hpp index cd2c244459707..6ee7d87a041fb 100644 --- a/dart/dynamics/TranslationalJoint.hpp +++ b/dart/dynamics/TranslationalJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/TranslationalJoint2D.cpp b/dart/dynamics/TranslationalJoint2D.cpp index 6a9a35c00cc55..c00e334b2388f 100644 --- a/dart/dynamics/TranslationalJoint2D.cpp +++ b/dart/dynamics/TranslationalJoint2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/TranslationalJoint2D.hpp b/dart/dynamics/TranslationalJoint2D.hpp index b95899cd38101..f39662766af8a 100644 --- a/dart/dynamics/TranslationalJoint2D.hpp +++ b/dart/dynamics/TranslationalJoint2D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/UniversalJoint.cpp b/dart/dynamics/UniversalJoint.cpp index c30e69226a4ec..5f6654e760845 100644 --- a/dart/dynamics/UniversalJoint.cpp +++ b/dart/dynamics/UniversalJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/UniversalJoint.hpp b/dart/dynamics/UniversalJoint.hpp index 1bab04e2df1d5..a99f2503744ac 100644 --- a/dart/dynamics/UniversalJoint.hpp +++ b/dart/dynamics/UniversalJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/VoxelGridShape.cpp b/dart/dynamics/VoxelGridShape.cpp index 1efe78f9cfd9f..1fcff68bf6c3c 100644 --- a/dart/dynamics/VoxelGridShape.cpp +++ b/dart/dynamics/VoxelGridShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/VoxelGridShape.hpp b/dart/dynamics/VoxelGridShape.hpp index b5ea2b9d4c703..5655e135cb5d5 100644 --- a/dart/dynamics/VoxelGridShape.hpp +++ b/dart/dynamics/VoxelGridShape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/WeldJoint.cpp b/dart/dynamics/WeldJoint.cpp index 25ec851f9d919..6bac785192a5d 100644 --- a/dart/dynamics/WeldJoint.cpp +++ b/dart/dynamics/WeldJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/WeldJoint.hpp b/dart/dynamics/WeldJoint.hpp index 634053832fa5f..69f9e6458a744 100644 --- a/dart/dynamics/WeldJoint.hpp +++ b/dart/dynamics/WeldJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ZeroDofJoint.cpp b/dart/dynamics/ZeroDofJoint.cpp index b61891b87ee2b..e832b9a1863be 100644 --- a/dart/dynamics/ZeroDofJoint.cpp +++ b/dart/dynamics/ZeroDofJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/ZeroDofJoint.hpp b/dart/dynamics/ZeroDofJoint.hpp index bc447148394b2..930279db69a72 100644 --- a/dart/dynamics/ZeroDofJoint.hpp +++ b/dart/dynamics/ZeroDofJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/BasicNodeManager.hpp b/dart/dynamics/detail/BasicNodeManager.hpp index 482749f4ac634..31a995efe35b6 100644 --- a/dart/dynamics/detail/BasicNodeManager.hpp +++ b/dart/dynamics/detail/BasicNodeManager.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/BodyNode.hpp b/dart/dynamics/detail/BodyNode.hpp index 18929042f787a..c89ab532c9aac 100644 --- a/dart/dynamics/detail/BodyNode.hpp +++ b/dart/dynamics/detail/BodyNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/BodyNodeAspect.hpp b/dart/dynamics/detail/BodyNodeAspect.hpp index 28c6c14e495ae..4de7e4891e018 100644 --- a/dart/dynamics/detail/BodyNodeAspect.hpp +++ b/dart/dynamics/detail/BodyNodeAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/BodyNodePtr.hpp b/dart/dynamics/detail/BodyNodePtr.hpp index 23aa3b346158d..8182360e0bc53 100644 --- a/dart/dynamics/detail/BodyNodePtr.hpp +++ b/dart/dynamics/detail/BodyNodePtr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/CompositeNode.hpp b/dart/dynamics/detail/CompositeNode.hpp index 483c56aa3daab..71f2ea5b4adaf 100644 --- a/dart/dynamics/detail/CompositeNode.hpp +++ b/dart/dynamics/detail/CompositeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/DegreeOfFreedomPtr.hpp b/dart/dynamics/detail/DegreeOfFreedomPtr.hpp index bf0be16465c6b..3302322799508 100644 --- a/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +++ b/dart/dynamics/detail/DegreeOfFreedomPtr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/EndEffectorAspect.hpp b/dart/dynamics/detail/EndEffectorAspect.hpp index 5c0449f0bd4d0..066edaa7fa638 100644 --- a/dart/dynamics/detail/EndEffectorAspect.hpp +++ b/dart/dynamics/detail/EndEffectorAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/EntityNode.hpp b/dart/dynamics/detail/EntityNode.hpp index 6b461603caccc..27fe552656eee 100644 --- a/dart/dynamics/detail/EntityNode.hpp +++ b/dart/dynamics/detail/EntityNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/EntityNodeAspect.cpp b/dart/dynamics/detail/EntityNodeAspect.cpp index dccd8bafca2e2..c3fb6f371531a 100644 --- a/dart/dynamics/detail/EntityNodeAspect.cpp +++ b/dart/dynamics/detail/EntityNodeAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/EntityNodeAspect.hpp b/dart/dynamics/detail/EntityNodeAspect.hpp index fa2ae70acf37f..753f7d7d7ef7c 100644 --- a/dart/dynamics/detail/EntityNodeAspect.hpp +++ b/dart/dynamics/detail/EntityNodeAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/EulerJointAspect.cpp b/dart/dynamics/detail/EulerJointAspect.cpp index 76da417510427..004283c98fbab 100644 --- a/dart/dynamics/detail/EulerJointAspect.cpp +++ b/dart/dynamics/detail/EulerJointAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/EulerJointAspect.hpp b/dart/dynamics/detail/EulerJointAspect.hpp index 2364d321c511d..4df0ea0693039 100644 --- a/dart/dynamics/detail/EulerJointAspect.hpp +++ b/dart/dynamics/detail/EulerJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/FixedFrameAspect.hpp b/dart/dynamics/detail/FixedFrameAspect.hpp index e2f97b91da95c..5626ef4c4c010 100644 --- a/dart/dynamics/detail/FixedFrameAspect.hpp +++ b/dart/dynamics/detail/FixedFrameAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/FixedJacobianNode.hpp b/dart/dynamics/detail/FixedJacobianNode.hpp index 4b1c7bee306e7..e9223fdf1fbc3 100644 --- a/dart/dynamics/detail/FixedJacobianNode.hpp +++ b/dart/dynamics/detail/FixedJacobianNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/GenericJoint.hpp b/dart/dynamics/detail/GenericJoint.hpp index dfc7e3aada742..b10da7535c8d7 100644 --- a/dart/dynamics/detail/GenericJoint.hpp +++ b/dart/dynamics/detail/GenericJoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/GenericJointAspect.hpp b/dart/dynamics/detail/GenericJointAspect.hpp index e2b2a65988d49..569907447099c 100644 --- a/dart/dynamics/detail/GenericJointAspect.hpp +++ b/dart/dynamics/detail/GenericJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/HeightmapShape-impl.hpp b/dart/dynamics/detail/HeightmapShape-impl.hpp index 853cb695cdb79..6af1d97ddc3b2 100644 --- a/dart/dynamics/detail/HeightmapShape-impl.hpp +++ b/dart/dynamics/detail/HeightmapShape-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/InverseKinematics.hpp b/dart/dynamics/detail/InverseKinematics.hpp index 0a048bfc3e3e9..7c3c7c538afed 100644 --- a/dart/dynamics/detail/InverseKinematics.hpp +++ b/dart/dynamics/detail/InverseKinematics.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/InverseKinematicsPtr.hpp b/dart/dynamics/detail/InverseKinematicsPtr.hpp index 221d2b5fad3e5..b1c7e3e246d35 100644 --- a/dart/dynamics/detail/InverseKinematicsPtr.hpp +++ b/dart/dynamics/detail/InverseKinematicsPtr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/JointAspect.hpp b/dart/dynamics/detail/JointAspect.hpp index 0ad97020d6156..21aa830042ebd 100644 --- a/dart/dynamics/detail/JointAspect.hpp +++ b/dart/dynamics/detail/JointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/JointPtr.hpp b/dart/dynamics/detail/JointPtr.hpp index 65b2ee2563b5c..a2497269805db 100644 --- a/dart/dynamics/detail/JointPtr.hpp +++ b/dart/dynamics/detail/JointPtr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/MarkerAspect.hpp b/dart/dynamics/detail/MarkerAspect.hpp index 68a53c7a901d4..8fa84414edcda 100644 --- a/dart/dynamics/detail/MarkerAspect.hpp +++ b/dart/dynamics/detail/MarkerAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/Node.hpp b/dart/dynamics/detail/Node.hpp index 6869350af4045..77a8d23875e9e 100644 --- a/dart/dynamics/detail/Node.hpp +++ b/dart/dynamics/detail/Node.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/NodeManagerJoiner.hpp b/dart/dynamics/detail/NodeManagerJoiner.hpp index ab461e00d0bae..df6c754cc7601 100644 --- a/dart/dynamics/detail/NodeManagerJoiner.hpp +++ b/dart/dynamics/detail/NodeManagerJoiner.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/NodePtr.hpp b/dart/dynamics/detail/NodePtr.hpp index 3e27b906f613e..6e6c1ed67c0cf 100644 --- a/dart/dynamics/detail/NodePtr.hpp +++ b/dart/dynamics/detail/NodePtr.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/PlanarJointAspect.cpp b/dart/dynamics/detail/PlanarJointAspect.cpp index e3832a9e689fd..f4f00774c4fc1 100644 --- a/dart/dynamics/detail/PlanarJointAspect.cpp +++ b/dart/dynamics/detail/PlanarJointAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/PlanarJointAspect.hpp b/dart/dynamics/detail/PlanarJointAspect.hpp index 68a75500695a6..226ca729a7bce 100644 --- a/dart/dynamics/detail/PlanarJointAspect.hpp +++ b/dart/dynamics/detail/PlanarJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/PrismaticJointAspect.cpp b/dart/dynamics/detail/PrismaticJointAspect.cpp index 442991bbbca3e..d84caa3345f94 100644 --- a/dart/dynamics/detail/PrismaticJointAspect.cpp +++ b/dart/dynamics/detail/PrismaticJointAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/PrismaticJointAspect.hpp b/dart/dynamics/detail/PrismaticJointAspect.hpp index 00e4d31c54428..227831d0b1669 100644 --- a/dart/dynamics/detail/PrismaticJointAspect.hpp +++ b/dart/dynamics/detail/PrismaticJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/RevoluteJointAspect.cpp b/dart/dynamics/detail/RevoluteJointAspect.cpp index 25cd187ea0957..7d932570b0d5b 100644 --- a/dart/dynamics/detail/RevoluteJointAspect.cpp +++ b/dart/dynamics/detail/RevoluteJointAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/RevoluteJointAspect.hpp b/dart/dynamics/detail/RevoluteJointAspect.hpp index 9384918a8ada2..c4984731febc6 100644 --- a/dart/dynamics/detail/RevoluteJointAspect.hpp +++ b/dart/dynamics/detail/RevoluteJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/ScrewJointAspect.cpp b/dart/dynamics/detail/ScrewJointAspect.cpp index 5956a63c5ffd5..ff04297f2e119 100644 --- a/dart/dynamics/detail/ScrewJointAspect.cpp +++ b/dart/dynamics/detail/ScrewJointAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/ScrewJointAspect.hpp b/dart/dynamics/detail/ScrewJointAspect.hpp index 88d955bc069c7..ded3a87913426 100644 --- a/dart/dynamics/detail/ScrewJointAspect.hpp +++ b/dart/dynamics/detail/ScrewJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/Shape.hpp b/dart/dynamics/detail/Shape.hpp index 3f2abe03da40c..b852fc4bf1ddc 100644 --- a/dart/dynamics/detail/Shape.hpp +++ b/dart/dynamics/detail/Shape.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/ShapeFrameAspect.hpp b/dart/dynamics/detail/ShapeFrameAspect.hpp index 3bec1048dc969..6abbc99f974d8 100644 --- a/dart/dynamics/detail/ShapeFrameAspect.hpp +++ b/dart/dynamics/detail/ShapeFrameAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/ShapeNode.hpp b/dart/dynamics/detail/ShapeNode.hpp index de74402c06aee..1d7c1abb9919b 100644 --- a/dart/dynamics/detail/ShapeNode.hpp +++ b/dart/dynamics/detail/ShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/Skeleton.hpp b/dart/dynamics/detail/Skeleton.hpp index 0b42e2fcbdae0..6b61fae0b2917 100644 --- a/dart/dynamics/detail/Skeleton.hpp +++ b/dart/dynamics/detail/Skeleton.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/SkeletonAspect.hpp b/dart/dynamics/detail/SkeletonAspect.hpp index 99ae1f2bb04ee..27401ec9b2989 100644 --- a/dart/dynamics/detail/SkeletonAspect.hpp +++ b/dart/dynamics/detail/SkeletonAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/SoftBodyNodeAspect.hpp b/dart/dynamics/detail/SoftBodyNodeAspect.hpp index 688fbf2a036d6..f4cffb6ebc4e9 100644 --- a/dart/dynamics/detail/SoftBodyNodeAspect.hpp +++ b/dart/dynamics/detail/SoftBodyNodeAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/SpecializedNodeManager.hpp b/dart/dynamics/detail/SpecializedNodeManager.hpp index 9e9cfd2fde69c..2558527f2b6e1 100644 --- a/dart/dynamics/detail/SpecializedNodeManager.hpp +++ b/dart/dynamics/detail/SpecializedNodeManager.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/TemplatedJacobianNode.hpp b/dart/dynamics/detail/TemplatedJacobianNode.hpp index f0e79ede8fc73..0d8ec964cc285 100644 --- a/dart/dynamics/detail/TemplatedJacobianNode.hpp +++ b/dart/dynamics/detail/TemplatedJacobianNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/TranslationalJoint2DAspect.cpp b/dart/dynamics/detail/TranslationalJoint2DAspect.cpp index 777ff725fcbaf..8687824558e3e 100644 --- a/dart/dynamics/detail/TranslationalJoint2DAspect.cpp +++ b/dart/dynamics/detail/TranslationalJoint2DAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/TranslationalJoint2DAspect.hpp b/dart/dynamics/detail/TranslationalJoint2DAspect.hpp index 293bfedef1d5d..5f4e58042eb05 100644 --- a/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +++ b/dart/dynamics/detail/TranslationalJoint2DAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/UniversalJointAspect.cpp b/dart/dynamics/detail/UniversalJointAspect.cpp index 222fefff7d4e7..bd9999bd1d8a2 100644 --- a/dart/dynamics/detail/UniversalJointAspect.cpp +++ b/dart/dynamics/detail/UniversalJointAspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/dynamics/detail/UniversalJointAspect.hpp b/dart/dynamics/detail/UniversalJointAspect.hpp index 230dbe3fa5fe4..6b1fbbbc5dfa1 100644 --- a/dart/dynamics/detail/UniversalJointAspect.hpp +++ b/dart/dynamics/detail/UniversalJointAspect.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/GLFuncs.cpp b/dart/gui/GLFuncs.cpp index bce15c9c581d1..1648e02c211cd 100644 --- a/dart/gui/GLFuncs.cpp +++ b/dart/gui/GLFuncs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/GLFuncs.hpp b/dart/gui/GLFuncs.hpp index 2e6df3c662918..b99afbc216b36 100644 --- a/dart/gui/GLFuncs.hpp +++ b/dart/gui/GLFuncs.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/GlutWindow.hpp b/dart/gui/GlutWindow.hpp index 2717cd62bc545..53972fe399078 100644 --- a/dart/gui/GlutWindow.hpp +++ b/dart/gui/GlutWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/GraphWindow.hpp b/dart/gui/GraphWindow.hpp index 624220f392d8f..4339b22d93f0a 100644 --- a/dart/gui/GraphWindow.hpp +++ b/dart/gui/GraphWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/LoadGlut.hpp b/dart/gui/LoadGlut.hpp index c5baa79309211..14f74167a5363 100644 --- a/dart/gui/LoadGlut.hpp +++ b/dart/gui/LoadGlut.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/LoadOpengl.hpp b/dart/gui/LoadOpengl.hpp index 7d3f68aa0a5cb..7f8f25ccc29a2 100644 --- a/dart/gui/LoadOpengl.hpp +++ b/dart/gui/LoadOpengl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/OpenGLRenderInterface.cpp b/dart/gui/OpenGLRenderInterface.cpp index 334faf10e65af..57510d74f9b2a 100644 --- a/dart/gui/OpenGLRenderInterface.cpp +++ b/dart/gui/OpenGLRenderInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/OpenGLRenderInterface.hpp b/dart/gui/OpenGLRenderInterface.hpp index 4406975b30f30..163577ae33eb8 100644 --- a/dart/gui/OpenGLRenderInterface.hpp +++ b/dart/gui/OpenGLRenderInterface.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/RenderInterface.cpp b/dart/gui/RenderInterface.cpp index 18481f51095d3..785c57c1789fe 100644 --- a/dart/gui/RenderInterface.cpp +++ b/dart/gui/RenderInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/RenderInterface.hpp b/dart/gui/RenderInterface.hpp index 591086900c1bd..8d784a017faad 100644 --- a/dart/gui/RenderInterface.hpp +++ b/dart/gui/RenderInterface.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/SimWindow.hpp b/dart/gui/SimWindow.hpp index 1915008c8fa2e..19dcef64038c2 100644 --- a/dart/gui/SimWindow.hpp +++ b/dart/gui/SimWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/SoftSimWindow.hpp b/dart/gui/SoftSimWindow.hpp index c1588361b7cfd..8fa4e417ba6ab 100644 --- a/dart/gui/SoftSimWindow.hpp +++ b/dart/gui/SoftSimWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/Trackball.cpp b/dart/gui/Trackball.cpp index 764984bf8817e..d1c5168516855 100644 --- a/dart/gui/Trackball.cpp +++ b/dart/gui/Trackball.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/Trackball.hpp b/dart/gui/Trackball.hpp index e21c848f94072..8e54ffc12092e 100644 --- a/dart/gui/Trackball.hpp +++ b/dart/gui/Trackball.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/Win2D.hpp b/dart/gui/Win2D.hpp index 9fa6f78cc687d..bc7ca57c3b628 100644 --- a/dart/gui/Win2D.hpp +++ b/dart/gui/Win2D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/Win3D.hpp b/dart/gui/Win3D.hpp index 49eaa093af915..85bc0fffce76d 100644 --- a/dart/gui/Win3D.hpp +++ b/dart/gui/Win3D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/GLUTFuncs.cpp b/dart/gui/glut/GLUTFuncs.cpp index a694cc6d6385a..128ae93d255e3 100644 --- a/dart/gui/glut/GLUTFuncs.cpp +++ b/dart/gui/glut/GLUTFuncs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/GLUTFuncs.hpp b/dart/gui/glut/GLUTFuncs.hpp index 605ad78fc21f1..49b2a4576baf1 100644 --- a/dart/gui/glut/GLUTFuncs.hpp +++ b/dart/gui/glut/GLUTFuncs.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/GlutWindow.cpp b/dart/gui/glut/GlutWindow.cpp index 83a3275be3d02..7cfd646b98ba0 100644 --- a/dart/gui/glut/GlutWindow.cpp +++ b/dart/gui/glut/GlutWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/GraphWindow.cpp b/dart/gui/glut/GraphWindow.cpp index 7b17172c9cde6..2939750259b9a 100644 --- a/dart/gui/glut/GraphWindow.cpp +++ b/dart/gui/glut/GraphWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/GraphWindow.hpp b/dart/gui/glut/GraphWindow.hpp index 1fe561994a1ad..27e9615f6c290 100644 --- a/dart/gui/glut/GraphWindow.hpp +++ b/dart/gui/glut/GraphWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/LoadGlut.hpp b/dart/gui/glut/LoadGlut.hpp index 2ea3c0d7419c9..9e3253eecd8ba 100644 --- a/dart/gui/glut/LoadGlut.hpp +++ b/dart/gui/glut/LoadGlut.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/MotionBlurSimWindow.hpp b/dart/gui/glut/MotionBlurSimWindow.hpp index 448ee40f5b28d..d7dcc2781395d 100644 --- a/dart/gui/glut/MotionBlurSimWindow.hpp +++ b/dart/gui/glut/MotionBlurSimWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/SimWindow.cpp b/dart/gui/glut/SimWindow.cpp index 922f50993e362..35f2dcbbe2a2f 100644 --- a/dart/gui/glut/SimWindow.cpp +++ b/dart/gui/glut/SimWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/SimWindow.hpp b/dart/gui/glut/SimWindow.hpp index 3ec0438218e9a..c8897b75967ee 100644 --- a/dart/gui/glut/SimWindow.hpp +++ b/dart/gui/glut/SimWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/SoftSimWindow.cpp b/dart/gui/glut/SoftSimWindow.cpp index 55b2df26762ee..b81de796b04ff 100644 --- a/dart/gui/glut/SoftSimWindow.cpp +++ b/dart/gui/glut/SoftSimWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/SoftSimWindow.hpp b/dart/gui/glut/SoftSimWindow.hpp index e8af653816287..c853b10a1959d 100644 --- a/dart/gui/glut/SoftSimWindow.hpp +++ b/dart/gui/glut/SoftSimWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/Win2D.cpp b/dart/gui/glut/Win2D.cpp index 315edf8cafb3f..de2f5678d49d4 100644 --- a/dart/gui/glut/Win2D.cpp +++ b/dart/gui/glut/Win2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/Win2D.hpp b/dart/gui/glut/Win2D.hpp index 649641be976fb..02a08551d48c9 100644 --- a/dart/gui/glut/Win2D.hpp +++ b/dart/gui/glut/Win2D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/Win3D.cpp b/dart/gui/glut/Win3D.cpp index 87e7dc6a5b432..ce90b87cfd5fd 100644 --- a/dart/gui/glut/Win3D.cpp +++ b/dart/gui/glut/Win3D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/Win3D.hpp b/dart/gui/glut/Win3D.hpp index 50bc638f25a65..a17701d1f7230 100644 --- a/dart/gui/glut/Win3D.hpp +++ b/dart/gui/glut/Win3D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/glut/Window.hpp b/dart/gui/glut/Window.hpp index 549f40a08c339..e2b70c0b66fa3 100644 --- a/dart/gui/glut/Window.hpp +++ b/dart/gui/glut/Window.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/DefaultEventHandler.cpp b/dart/gui/osg/DefaultEventHandler.cpp index 5bf1edec00748..3aa130f12e025 100644 --- a/dart/gui/osg/DefaultEventHandler.cpp +++ b/dart/gui/osg/DefaultEventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/DefaultEventHandler.hpp b/dart/gui/osg/DefaultEventHandler.hpp index f5d0abfdb1cf0..a277429d99bbc 100644 --- a/dart/gui/osg/DefaultEventHandler.hpp +++ b/dart/gui/osg/DefaultEventHandler.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/DragAndDrop.cpp b/dart/gui/osg/DragAndDrop.cpp index 00a0c0e7d9235..9f6efa6392e08 100644 --- a/dart/gui/osg/DragAndDrop.cpp +++ b/dart/gui/osg/DragAndDrop.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/DragAndDrop.hpp b/dart/gui/osg/DragAndDrop.hpp index 8783cf3783c51..80d9aacaaf1b4 100644 --- a/dart/gui/osg/DragAndDrop.hpp +++ b/dart/gui/osg/DragAndDrop.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ImGuiHandler.cpp b/dart/gui/osg/ImGuiHandler.cpp index 435b88b0e5ae2..4c142ef872890 100644 --- a/dart/gui/osg/ImGuiHandler.cpp +++ b/dart/gui/osg/ImGuiHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ImGuiHandler.hpp b/dart/gui/osg/ImGuiHandler.hpp index 46640a083a257..9386e0ff883a8 100644 --- a/dart/gui/osg/ImGuiHandler.hpp +++ b/dart/gui/osg/ImGuiHandler.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ImGuiViewer.cpp b/dart/gui/osg/ImGuiViewer.cpp index 8919db1aac955..30b9d4ad34fb3 100644 --- a/dart/gui/osg/ImGuiViewer.cpp +++ b/dart/gui/osg/ImGuiViewer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ImGuiViewer.hpp b/dart/gui/osg/ImGuiViewer.hpp index a8be836a119e6..311837e7f401c 100644 --- a/dart/gui/osg/ImGuiViewer.hpp +++ b/dart/gui/osg/ImGuiViewer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ImGuiWidget.cpp b/dart/gui/osg/ImGuiWidget.cpp index 1fad8bc5a7547..30ae00eae8b94 100644 --- a/dart/gui/osg/ImGuiWidget.cpp +++ b/dart/gui/osg/ImGuiWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: @@ -92,7 +92,7 @@ void AboutWidget::render() ImGui::Begin("About DART", &mIsVisible, ImGuiWindowFlags_AlwaysAutoResize); //ImGui::Text("HIT %s", Version::asString().c_str()); ImGui::Separator(); - ImGui::Text("Copyright (c) 2011-2018, The DART development contributors"); + ImGui::Text("Copyright (c) 2011-2019, The DART development contributors"); ImGui::Text("DART is licensed under the BSD 2 Clause License."); ImGui::Separator(); ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", diff --git a/dart/gui/osg/ImGuiWidget.hpp b/dart/gui/osg/ImGuiWidget.hpp index e1e229c77b37a..3e5fbdd5e2673 100644 --- a/dart/gui/osg/ImGuiWidget.hpp +++ b/dart/gui/osg/ImGuiWidget.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/InteractiveFrame.cpp b/dart/gui/osg/InteractiveFrame.cpp index 40fa96d4b78e1..b672a545e00b0 100644 --- a/dart/gui/osg/InteractiveFrame.cpp +++ b/dart/gui/osg/InteractiveFrame.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/InteractiveFrame.hpp b/dart/gui/osg/InteractiveFrame.hpp index 9e20b78c406fb..9da96402d67d9 100644 --- a/dart/gui/osg/InteractiveFrame.hpp +++ b/dart/gui/osg/InteractiveFrame.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/MouseEventHandler.hpp b/dart/gui/osg/MouseEventHandler.hpp index 9bb71f2a2bde3..3895a2776f076 100644 --- a/dart/gui/osg/MouseEventHandler.hpp +++ b/dart/gui/osg/MouseEventHandler.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ShapeFrameNode.cpp b/dart/gui/osg/ShapeFrameNode.cpp index 9c7a044045d2d..b75177ccc7509 100644 --- a/dart/gui/osg/ShapeFrameNode.cpp +++ b/dart/gui/osg/ShapeFrameNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/ShapeFrameNode.hpp b/dart/gui/osg/ShapeFrameNode.hpp index 13273a3ab33f2..f38156af29dce 100644 --- a/dart/gui/osg/ShapeFrameNode.hpp +++ b/dart/gui/osg/ShapeFrameNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/SupportPolygonVisual.cpp b/dart/gui/osg/SupportPolygonVisual.cpp index 8de068f45b709..2680124cdc5e4 100644 --- a/dart/gui/osg/SupportPolygonVisual.cpp +++ b/dart/gui/osg/SupportPolygonVisual.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/SupportPolygonVisual.hpp b/dart/gui/osg/SupportPolygonVisual.hpp index d834b4ebcc5cf..05eaa06061272 100644 --- a/dart/gui/osg/SupportPolygonVisual.hpp +++ b/dart/gui/osg/SupportPolygonVisual.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/TrackballManipulator.cpp b/dart/gui/osg/TrackballManipulator.cpp index 1be56193c5a6a..eb861298dec28 100644 --- a/dart/gui/osg/TrackballManipulator.cpp +++ b/dart/gui/osg/TrackballManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/TrackballManipulator.hpp b/dart/gui/osg/TrackballManipulator.hpp index e0536ca8539cc..be45fe878e630 100644 --- a/dart/gui/osg/TrackballManipulator.hpp +++ b/dart/gui/osg/TrackballManipulator.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/Utils.hpp b/dart/gui/osg/Utils.hpp index cc8f6c75f8d9f..4cf8cdddaa536 100644 --- a/dart/gui/osg/Utils.hpp +++ b/dart/gui/osg/Utils.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/Viewer.cpp b/dart/gui/osg/Viewer.cpp index 3696c6370fc28..100478397ffe5 100644 --- a/dart/gui/osg/Viewer.cpp +++ b/dart/gui/osg/Viewer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/Viewer.hpp b/dart/gui/osg/Viewer.hpp index 47109d99d6c41..e683489f04598 100644 --- a/dart/gui/osg/Viewer.hpp +++ b/dart/gui/osg/Viewer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/WorldNode.cpp b/dart/gui/osg/WorldNode.cpp index cab59c04a9c31..a7dc5bd483e72 100644 --- a/dart/gui/osg/WorldNode.cpp +++ b/dart/gui/osg/WorldNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/WorldNode.hpp b/dart/gui/osg/WorldNode.hpp index f33c9bff019d7..bf33906061f8d 100644 --- a/dart/gui/osg/WorldNode.hpp +++ b/dart/gui/osg/WorldNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/BoxShapeNode.cpp b/dart/gui/osg/render/BoxShapeNode.cpp index 597fc95af5bf0..3d955bcce0889 100644 --- a/dart/gui/osg/render/BoxShapeNode.cpp +++ b/dart/gui/osg/render/BoxShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/BoxShapeNode.hpp b/dart/gui/osg/render/BoxShapeNode.hpp index f36889cb9a343..698cc050e9bf6 100644 --- a/dart/gui/osg/render/BoxShapeNode.hpp +++ b/dart/gui/osg/render/BoxShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/CapsuleShapeNode.cpp b/dart/gui/osg/render/CapsuleShapeNode.cpp index ba33d7f92cb36..c4b1476a0ccdc 100644 --- a/dart/gui/osg/render/CapsuleShapeNode.cpp +++ b/dart/gui/osg/render/CapsuleShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/CapsuleShapeNode.hpp b/dart/gui/osg/render/CapsuleShapeNode.hpp index 7cfd17d07327f..11c8a3b79aec5 100644 --- a/dart/gui/osg/render/CapsuleShapeNode.hpp +++ b/dart/gui/osg/render/CapsuleShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/ConeShapeNode.cpp b/dart/gui/osg/render/ConeShapeNode.cpp index 7ef5827c5ae90..cecd21bddb347 100644 --- a/dart/gui/osg/render/ConeShapeNode.cpp +++ b/dart/gui/osg/render/ConeShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/ConeShapeNode.hpp b/dart/gui/osg/render/ConeShapeNode.hpp index 7c6bc85cdf85f..5a65fa7dbc4d3 100644 --- a/dart/gui/osg/render/ConeShapeNode.hpp +++ b/dart/gui/osg/render/ConeShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/CylinderShapeNode.cpp b/dart/gui/osg/render/CylinderShapeNode.cpp index cf193429e3401..eb72c3732e253 100644 --- a/dart/gui/osg/render/CylinderShapeNode.cpp +++ b/dart/gui/osg/render/CylinderShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/CylinderShapeNode.hpp b/dart/gui/osg/render/CylinderShapeNode.hpp index dee969f181eda..0fb4fd9092903 100644 --- a/dart/gui/osg/render/CylinderShapeNode.hpp +++ b/dart/gui/osg/render/CylinderShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/EllipsoidShapeNode.cpp b/dart/gui/osg/render/EllipsoidShapeNode.cpp index 0ff34a2ebeec8..97abaabb657e5 100644 --- a/dart/gui/osg/render/EllipsoidShapeNode.cpp +++ b/dart/gui/osg/render/EllipsoidShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/EllipsoidShapeNode.hpp b/dart/gui/osg/render/EllipsoidShapeNode.hpp index 9bed2b16c0c17..fb6432fddcc32 100644 --- a/dart/gui/osg/render/EllipsoidShapeNode.hpp +++ b/dart/gui/osg/render/EllipsoidShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/LineSegmentShapeNode.cpp b/dart/gui/osg/render/LineSegmentShapeNode.cpp index 2ff714c9698ea..ea22e10f27e02 100644 --- a/dart/gui/osg/render/LineSegmentShapeNode.cpp +++ b/dart/gui/osg/render/LineSegmentShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/LineSegmentShapeNode.hpp b/dart/gui/osg/render/LineSegmentShapeNode.hpp index 29ee628467a3f..62ab9896a9fc6 100644 --- a/dart/gui/osg/render/LineSegmentShapeNode.hpp +++ b/dart/gui/osg/render/LineSegmentShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/MeshShapeNode.cpp b/dart/gui/osg/render/MeshShapeNode.cpp index c2c6d16a80e42..bf37255b6bb52 100644 --- a/dart/gui/osg/render/MeshShapeNode.cpp +++ b/dart/gui/osg/render/MeshShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/MeshShapeNode.hpp b/dart/gui/osg/render/MeshShapeNode.hpp index a9cc92d01933e..3fed036950730 100644 --- a/dart/gui/osg/render/MeshShapeNode.hpp +++ b/dart/gui/osg/render/MeshShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/MultiSphereShapeNode.cpp b/dart/gui/osg/render/MultiSphereShapeNode.cpp index 8b157e838005d..ab5fde3c7eb91 100644 --- a/dart/gui/osg/render/MultiSphereShapeNode.cpp +++ b/dart/gui/osg/render/MultiSphereShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/MultiSphereShapeNode.hpp b/dart/gui/osg/render/MultiSphereShapeNode.hpp index 6c1c714f3f737..437aad7e892da 100644 --- a/dart/gui/osg/render/MultiSphereShapeNode.hpp +++ b/dart/gui/osg/render/MultiSphereShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/PlaneShapeNode.cpp b/dart/gui/osg/render/PlaneShapeNode.cpp index 654f526bc8c4c..3c3dd4815b072 100644 --- a/dart/gui/osg/render/PlaneShapeNode.cpp +++ b/dart/gui/osg/render/PlaneShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/PlaneShapeNode.hpp b/dart/gui/osg/render/PlaneShapeNode.hpp index 5aca3c541d0d4..df788c6c791d9 100644 --- a/dart/gui/osg/render/PlaneShapeNode.hpp +++ b/dart/gui/osg/render/PlaneShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/ShapeNode.cpp b/dart/gui/osg/render/ShapeNode.cpp index e94017f2b9600..35576aed778dd 100644 --- a/dart/gui/osg/render/ShapeNode.cpp +++ b/dart/gui/osg/render/ShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/ShapeNode.hpp b/dart/gui/osg/render/ShapeNode.hpp index ec2f0799487d4..c6819c74ceaae 100644 --- a/dart/gui/osg/render/ShapeNode.hpp +++ b/dart/gui/osg/render/ShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/SoftMeshShapeNode.cpp b/dart/gui/osg/render/SoftMeshShapeNode.cpp index ca55ba156b9dc..fa1b2b861df32 100644 --- a/dart/gui/osg/render/SoftMeshShapeNode.cpp +++ b/dart/gui/osg/render/SoftMeshShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/SoftMeshShapeNode.hpp b/dart/gui/osg/render/SoftMeshShapeNode.hpp index 74ccb8a97303b..e45b01d664d1d 100644 --- a/dart/gui/osg/render/SoftMeshShapeNode.hpp +++ b/dart/gui/osg/render/SoftMeshShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/SphereShapeNode.cpp b/dart/gui/osg/render/SphereShapeNode.cpp index 67e9adb61994d..32a096f7298da 100644 --- a/dart/gui/osg/render/SphereShapeNode.cpp +++ b/dart/gui/osg/render/SphereShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/SphereShapeNode.hpp b/dart/gui/osg/render/SphereShapeNode.hpp index 1a88c261104c9..6805f5b77a87d 100644 --- a/dart/gui/osg/render/SphereShapeNode.hpp +++ b/dart/gui/osg/render/SphereShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/WarningShapeNode.cpp b/dart/gui/osg/render/WarningShapeNode.cpp index b8f1bd9e550d3..1ba146101fbeb 100644 --- a/dart/gui/osg/render/WarningShapeNode.cpp +++ b/dart/gui/osg/render/WarningShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/gui/osg/render/WarningShapeNode.hpp b/dart/gui/osg/render/WarningShapeNode.hpp index 2e4a83c93abc3..8088bee572005 100644 --- a/dart/gui/osg/render/WarningShapeNode.hpp +++ b/dart/gui/osg/render/WarningShapeNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/EulerIntegrator.cpp b/dart/integration/EulerIntegrator.cpp index f50b66a79b637..abbd1cd1081e6 100644 --- a/dart/integration/EulerIntegrator.cpp +++ b/dart/integration/EulerIntegrator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/EulerIntegrator.hpp b/dart/integration/EulerIntegrator.hpp index c04e2f2aeef90..8a10cd45427de 100644 --- a/dart/integration/EulerIntegrator.hpp +++ b/dart/integration/EulerIntegrator.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/Integrator.cpp b/dart/integration/Integrator.cpp index f918bbc1a7d0e..ad5124f36e4c8 100644 --- a/dart/integration/Integrator.cpp +++ b/dart/integration/Integrator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/Integrator.hpp b/dart/integration/Integrator.hpp index 6865d58305982..71c3334f0226b 100644 --- a/dart/integration/Integrator.hpp +++ b/dart/integration/Integrator.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/RK4Integrator.cpp b/dart/integration/RK4Integrator.cpp index cbf6956e38c63..76b69807dd3f0 100644 --- a/dart/integration/RK4Integrator.cpp +++ b/dart/integration/RK4Integrator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/RK4Integrator.hpp b/dart/integration/RK4Integrator.hpp index a7466e53a92fa..ff30b60e6a2d2 100644 --- a/dart/integration/RK4Integrator.hpp +++ b/dart/integration/RK4Integrator.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/SemiImplicitEulerIntegrator.cpp b/dart/integration/SemiImplicitEulerIntegrator.cpp index 1ae1743499776..f1f1134ce28a1 100644 --- a/dart/integration/SemiImplicitEulerIntegrator.cpp +++ b/dart/integration/SemiImplicitEulerIntegrator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/integration/SemiImplicitEulerIntegrator.hpp b/dart/integration/SemiImplicitEulerIntegrator.hpp index 89492f202b38e..f3106fed37f86 100644 --- a/dart/integration/SemiImplicitEulerIntegrator.hpp +++ b/dart/integration/SemiImplicitEulerIntegrator.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/lcpsolver/Lemke.cpp b/dart/lcpsolver/Lemke.cpp index d8dcc85b07d8c..476cca9928cf9 100644 --- a/dart/lcpsolver/Lemke.cpp +++ b/dart/lcpsolver/Lemke.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/lcpsolver/Lemke.hpp b/dart/lcpsolver/Lemke.hpp index 9526765a57e9b..683f83562cbb9 100644 --- a/dart/lcpsolver/Lemke.hpp +++ b/dart/lcpsolver/Lemke.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/lcpsolver/ODELCPSolver.cpp b/dart/lcpsolver/ODELCPSolver.cpp index 5ceb5cce5b5c3..4e121f09ac351 100644 --- a/dart/lcpsolver/ODELCPSolver.cpp +++ b/dart/lcpsolver/ODELCPSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/lcpsolver/ODELCPSolver.hpp b/dart/lcpsolver/ODELCPSolver.hpp index b2a7689327a12..3a11a1199dd5b 100644 --- a/dart/lcpsolver/ODELCPSolver.hpp +++ b/dart/lcpsolver/ODELCPSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/ConfigurationSpace.cpp b/dart/math/ConfigurationSpace.cpp index a7ec6ce2fea66..49aedbc5b6d3f 100644 --- a/dart/math/ConfigurationSpace.cpp +++ b/dart/math/ConfigurationSpace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/ConfigurationSpace.hpp b/dart/math/ConfigurationSpace.hpp index 32bc64a62943c..a4da84789f799 100644 --- a/dart/math/ConfigurationSpace.hpp +++ b/dart/math/ConfigurationSpace.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/Constants.hpp b/dart/math/Constants.hpp index 7d4b649a1ff03..037d8084b7358 100644 --- a/dart/math/Constants.hpp +++ b/dart/math/Constants.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/Geometry.cpp b/dart/math/Geometry.cpp index 50c045004c6d5..5d42ef9293d21 100644 --- a/dart/math/Geometry.cpp +++ b/dart/math/Geometry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/Geometry.hpp b/dart/math/Geometry.hpp index c4d27905440c9..934a9e794bb82 100644 --- a/dart/math/Geometry.hpp +++ b/dart/math/Geometry.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/Helpers.hpp b/dart/math/Helpers.hpp index 354af832aef08..c2364cf59843b 100644 --- a/dart/math/Helpers.hpp +++ b/dart/math/Helpers.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/MathTypes.hpp b/dart/math/MathTypes.hpp index f4e5bc196129e..f99afd36ab8db 100644 --- a/dart/math/MathTypes.hpp +++ b/dart/math/MathTypes.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/Random.cpp b/dart/math/Random.cpp index a0d5edee2b069..c5c342f76e477 100644 --- a/dart/math/Random.cpp +++ b/dart/math/Random.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/Random.hpp b/dart/math/Random.hpp index 7accdecfa71d8..1570f5d9a6253 100644 --- a/dart/math/Random.hpp +++ b/dart/math/Random.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/detail/ConfigurationSpace.hpp b/dart/math/detail/ConfigurationSpace.hpp index 60857af787bb4..c7bed7fedd5d2 100644 --- a/dart/math/detail/ConfigurationSpace.hpp +++ b/dart/math/detail/ConfigurationSpace.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/math/detail/Random-impl.hpp b/dart/math/detail/Random-impl.hpp index 1a1b0c5ae3c1d..32141a99cb69c 100644 --- a/dart/math/detail/Random-impl.hpp +++ b/dart/math/detail/Random-impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Function.cpp b/dart/optimizer/Function.cpp index 5f03e6aad6858..984030d319fac 100644 --- a/dart/optimizer/Function.cpp +++ b/dart/optimizer/Function.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Function.hpp b/dart/optimizer/Function.hpp index 512fed10d5a03..e0adf0a2d175b 100644 --- a/dart/optimizer/Function.hpp +++ b/dart/optimizer/Function.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/GenericMultiObjectiveProblem.cpp b/dart/optimizer/GenericMultiObjectiveProblem.cpp index 7e93e99c9800a..e77803de8b383 100644 --- a/dart/optimizer/GenericMultiObjectiveProblem.cpp +++ b/dart/optimizer/GenericMultiObjectiveProblem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/GenericMultiObjectiveProblem.hpp b/dart/optimizer/GenericMultiObjectiveProblem.hpp index 0e4ba40fc20f4..9b1076b0c813b 100644 --- a/dart/optimizer/GenericMultiObjectiveProblem.hpp +++ b/dart/optimizer/GenericMultiObjectiveProblem.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/GradientDescentSolver.cpp b/dart/optimizer/GradientDescentSolver.cpp index 5c8678be73665..6456b09f08b82 100644 --- a/dart/optimizer/GradientDescentSolver.cpp +++ b/dart/optimizer/GradientDescentSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/GradientDescentSolver.hpp b/dart/optimizer/GradientDescentSolver.hpp index 2902505e064a8..14470ae9b6005 100644 --- a/dart/optimizer/GradientDescentSolver.hpp +++ b/dart/optimizer/GradientDescentSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/MultiObjectiveProblem.cpp b/dart/optimizer/MultiObjectiveProblem.cpp index 67acdbea7c641..9a5b49d152513 100644 --- a/dart/optimizer/MultiObjectiveProblem.cpp +++ b/dart/optimizer/MultiObjectiveProblem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/MultiObjectiveProblem.hpp b/dart/optimizer/MultiObjectiveProblem.hpp index c89a3da3e34ad..04b9e139bc840 100644 --- a/dart/optimizer/MultiObjectiveProblem.hpp +++ b/dart/optimizer/MultiObjectiveProblem.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/MultiObjectiveSolver.cpp b/dart/optimizer/MultiObjectiveSolver.cpp index 9c0f501ad93d7..cf3bc66e29c2e 100644 --- a/dart/optimizer/MultiObjectiveSolver.cpp +++ b/dart/optimizer/MultiObjectiveSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/MultiObjectiveSolver.hpp b/dart/optimizer/MultiObjectiveSolver.hpp index 2d69db9962aa2..729ff0cec5520 100644 --- a/dart/optimizer/MultiObjectiveSolver.hpp +++ b/dart/optimizer/MultiObjectiveSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Population.cpp b/dart/optimizer/Population.cpp index 23bd8c608d285..15a24427f3bc0 100644 --- a/dart/optimizer/Population.cpp +++ b/dart/optimizer/Population.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Population.hpp b/dart/optimizer/Population.hpp index be67a93f1473f..3caaebb25a788 100644 --- a/dart/optimizer/Population.hpp +++ b/dart/optimizer/Population.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Problem.cpp b/dart/optimizer/Problem.cpp index 3ac73561dcf42..94fb26faca8da 100644 --- a/dart/optimizer/Problem.cpp +++ b/dart/optimizer/Problem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Problem.hpp b/dart/optimizer/Problem.hpp index 7861cea8054c9..85b7f98bde59d 100644 --- a/dart/optimizer/Problem.hpp +++ b/dart/optimizer/Problem.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Solver.cpp b/dart/optimizer/Solver.cpp index 23155f282528b..114e4980a865e 100644 --- a/dart/optimizer/Solver.cpp +++ b/dart/optimizer/Solver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/Solver.hpp b/dart/optimizer/Solver.hpp index 878220a4df518..d9ffab58860b4 100644 --- a/dart/optimizer/Solver.hpp +++ b/dart/optimizer/Solver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/ipopt/IpoptSolver.cpp b/dart/optimizer/ipopt/IpoptSolver.cpp index 6ad18a5f5bfe5..84c2397e8d202 100644 --- a/dart/optimizer/ipopt/IpoptSolver.cpp +++ b/dart/optimizer/ipopt/IpoptSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/ipopt/IpoptSolver.hpp b/dart/optimizer/ipopt/IpoptSolver.hpp index e87a3e1026f58..9c89104c391d4 100644 --- a/dart/optimizer/ipopt/IpoptSolver.hpp +++ b/dart/optimizer/ipopt/IpoptSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/nlopt/NloptSolver.cpp b/dart/optimizer/nlopt/NloptSolver.cpp index c3ff9e364c685..e0f7c7fcba9c0 100644 --- a/dart/optimizer/nlopt/NloptSolver.cpp +++ b/dart/optimizer/nlopt/NloptSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/nlopt/NloptSolver.hpp b/dart/optimizer/nlopt/NloptSolver.hpp index be0639290f2ee..e7a918b82edd0 100644 --- a/dart/optimizer/nlopt/NloptSolver.hpp +++ b/dart/optimizer/nlopt/NloptSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.cpp b/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.cpp index a26e16e3bf827..eb937959e7c3c 100644 --- a/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.cpp +++ b/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.hpp b/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.hpp index 5d84ec078b934..832c4c19d3096 100644 --- a/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.hpp +++ b/dart/optimizer/pagmo/PagmoMultiObjectiveProblemAdaptor.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.cpp b/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.cpp index a40bd506ce37d..88f31f88284f9 100644 --- a/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.cpp +++ b/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.hpp b/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.hpp index 37f07510cc939..02a3d1aac60ac 100644 --- a/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.hpp +++ b/dart/optimizer/pagmo/PagmoMultiObjectiveSolver.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/pagmo/PagmoUtils.cpp b/dart/optimizer/pagmo/PagmoUtils.cpp index 8db345b62e3e8..f07f9ef1d96fb 100644 --- a/dart/optimizer/pagmo/PagmoUtils.cpp +++ b/dart/optimizer/pagmo/PagmoUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/optimizer/pagmo/PagmoUtils.hpp b/dart/optimizer/pagmo/PagmoUtils.hpp index 08089bd537e2c..88de0be8c11be 100644 --- a/dart/optimizer/pagmo/PagmoUtils.hpp +++ b/dart/optimizer/pagmo/PagmoUtils.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/Path.cpp b/dart/planning/Path.cpp index 55534ab72ee64..9be77399469a9 100644 --- a/dart/planning/Path.cpp +++ b/dart/planning/Path.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/Path.hpp b/dart/planning/Path.hpp index 0c8ef89c1741f..98085e2b5b51b 100644 --- a/dart/planning/Path.hpp +++ b/dart/planning/Path.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/PathFollowingTrajectory.cpp b/dart/planning/PathFollowingTrajectory.cpp index 8848e8571ef89..2feaac83de1b4 100644 --- a/dart/planning/PathFollowingTrajectory.cpp +++ b/dart/planning/PathFollowingTrajectory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/PathFollowingTrajectory.hpp b/dart/planning/PathFollowingTrajectory.hpp index 38af713648088..61348f7abd974 100644 --- a/dart/planning/PathFollowingTrajectory.hpp +++ b/dart/planning/PathFollowingTrajectory.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/PathPlanner.hpp b/dart/planning/PathPlanner.hpp index 5b9bcf6c7790c..c4cef36249df2 100644 --- a/dart/planning/PathPlanner.hpp +++ b/dart/planning/PathPlanner.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/PathShortener.cpp b/dart/planning/PathShortener.cpp index e61ff4f50362c..3faaa0394fe45 100644 --- a/dart/planning/PathShortener.cpp +++ b/dart/planning/PathShortener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/PathShortener.hpp b/dart/planning/PathShortener.hpp index b5518acb98824..fb41d5b0e675f 100644 --- a/dart/planning/PathShortener.hpp +++ b/dart/planning/PathShortener.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/RRT.cpp b/dart/planning/RRT.cpp index 34fbaed10b211..a2629b4777fe4 100644 --- a/dart/planning/RRT.cpp +++ b/dart/planning/RRT.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/RRT.hpp b/dart/planning/RRT.hpp index 65f0fd9585099..4534618eb8453 100644 --- a/dart/planning/RRT.hpp +++ b/dart/planning/RRT.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/planning/Trajectory.hpp b/dart/planning/Trajectory.hpp index 64decdc903958..e598e3e262951 100644 --- a/dart/planning/Trajectory.hpp +++ b/dart/planning/Trajectory.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/simulation/Recording.cpp b/dart/simulation/Recording.cpp index fc5adc6e89844..da0b9dbd24923 100644 --- a/dart/simulation/Recording.cpp +++ b/dart/simulation/Recording.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/simulation/Recording.hpp b/dart/simulation/Recording.hpp index 29d58529a57f3..a27bfda70beb3 100644 --- a/dart/simulation/Recording.hpp +++ b/dart/simulation/Recording.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/simulation/SmartPointer.hpp b/dart/simulation/SmartPointer.hpp index 613e018c4e9ed..9271890532456 100644 --- a/dart/simulation/SmartPointer.hpp +++ b/dart/simulation/SmartPointer.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/simulation/World.cpp b/dart/simulation/World.cpp index 9d920c7b69e72..8448fa7c2a42a 100644 --- a/dart/simulation/World.cpp +++ b/dart/simulation/World.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/simulation/World.hpp b/dart/simulation/World.hpp index 015d65c99309b..de6652cb54a4f 100644 --- a/dart/simulation/World.hpp +++ b/dart/simulation/World.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/C3D.cpp b/dart/utils/C3D.cpp index 53350e5951751..ced357f89f88e 100644 --- a/dart/utils/C3D.cpp +++ b/dart/utils/C3D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/C3D.hpp b/dart/utils/C3D.hpp index 06dfbf79c40e4..f4b53b0a0c68a 100644 --- a/dart/utils/C3D.hpp +++ b/dart/utils/C3D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/CompositeResourceRetriever.cpp b/dart/utils/CompositeResourceRetriever.cpp index e24286c5d8851..b31cb2de1ae96 100644 --- a/dart/utils/CompositeResourceRetriever.cpp +++ b/dart/utils/CompositeResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/CompositeResourceRetriever.hpp b/dart/utils/CompositeResourceRetriever.hpp index 101db935d0a2a..1ebd71f996544 100644 --- a/dart/utils/CompositeResourceRetriever.hpp +++ b/dart/utils/CompositeResourceRetriever.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/DartResourceRetriever.cpp b/dart/utils/DartResourceRetriever.cpp index 4019449dc30a9..677982de72ece 100644 --- a/dart/utils/DartResourceRetriever.cpp +++ b/dart/utils/DartResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/DartResourceRetriever.hpp b/dart/utils/DartResourceRetriever.hpp index 1582a9a2f3c1e..a58dd684c979a 100644 --- a/dart/utils/DartResourceRetriever.hpp +++ b/dart/utils/DartResourceRetriever.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/FileInfoC3D.cpp b/dart/utils/FileInfoC3D.cpp index f52447586114a..bcf9568c492cf 100644 --- a/dart/utils/FileInfoC3D.cpp +++ b/dart/utils/FileInfoC3D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/FileInfoC3D.hpp b/dart/utils/FileInfoC3D.hpp index a751b4816e101..9338c729d333c 100644 --- a/dart/utils/FileInfoC3D.hpp +++ b/dart/utils/FileInfoC3D.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/FileInfoDof.cpp b/dart/utils/FileInfoDof.cpp index 70f88a3622853..1e96ae8bc3283 100644 --- a/dart/utils/FileInfoDof.cpp +++ b/dart/utils/FileInfoDof.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/FileInfoDof.hpp b/dart/utils/FileInfoDof.hpp index b5842e699575d..8e6f9aeaa5141 100644 --- a/dart/utils/FileInfoDof.hpp +++ b/dart/utils/FileInfoDof.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/FileInfoWorld.cpp b/dart/utils/FileInfoWorld.cpp index 7df251b9b0832..b770fa6cee59d 100644 --- a/dart/utils/FileInfoWorld.cpp +++ b/dart/utils/FileInfoWorld.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/FileInfoWorld.hpp b/dart/utils/FileInfoWorld.hpp index b400a9f1a4e7a..7ba35f954918a 100644 --- a/dart/utils/FileInfoWorld.hpp +++ b/dart/utils/FileInfoWorld.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/MayaExportMotion.h_ b/dart/utils/MayaExportMotion.h_ index fddfad72c9caa..5b06fcd6efe1b 100644 --- a/dart/utils/MayaExportMotion.h_ +++ b/dart/utils/MayaExportMotion.h_ @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/MayaExportSkeleton.cpp_ b/dart/utils/MayaExportSkeleton.cpp_ index 49048b472e744..af0387dfb91d3 100644 --- a/dart/utils/MayaExportSkeleton.cpp_ +++ b/dart/utils/MayaExportSkeleton.cpp_ @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/MayaExportSkeleton.h_ b/dart/utils/MayaExportSkeleton.h_ index b8e7549cd3208..350fede4449c4 100644 --- a/dart/utils/MayaExportSkeleton.h_ +++ b/dart/utils/MayaExportSkeleton.h_ @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/PackageResourceRetriever.cpp b/dart/utils/PackageResourceRetriever.cpp index 4c410ae62a613..8ac05f4004902 100644 --- a/dart/utils/PackageResourceRetriever.cpp +++ b/dart/utils/PackageResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/PackageResourceRetriever.hpp b/dart/utils/PackageResourceRetriever.hpp index dafd94145541a..293503655e617 100644 --- a/dart/utils/PackageResourceRetriever.hpp +++ b/dart/utils/PackageResourceRetriever.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/ParserSkel.h_ b/dart/utils/ParserSkel.h_ index 1391ffbcafdf8..baacea4980a74 100644 --- a/dart/utils/ParserSkel.h_ +++ b/dart/utils/ParserSkel.h_ @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/SkelParser.cpp b/dart/utils/SkelParser.cpp index 3556980463e63..7eb5e5ce56859 100644 --- a/dart/utils/SkelParser.cpp +++ b/dart/utils/SkelParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/SkelParser.hpp b/dart/utils/SkelParser.hpp index b108889504902..0ce9795dc8e1e 100644 --- a/dart/utils/SkelParser.hpp +++ b/dart/utils/SkelParser.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/VskParser.cpp b/dart/utils/VskParser.cpp index 36e7c2d594de8..59629bf3b25d0 100644 --- a/dart/utils/VskParser.cpp +++ b/dart/utils/VskParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/VskParser.hpp b/dart/utils/VskParser.hpp index cbba89d7875c7..3122368bdd90c 100644 --- a/dart/utils/VskParser.hpp +++ b/dart/utils/VskParser.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/XmlHelpers.cpp b/dart/utils/XmlHelpers.cpp index 21facfddc5c70..1127305741ac3 100644 --- a/dart/utils/XmlHelpers.cpp +++ b/dart/utils/XmlHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/XmlHelpers.hpp b/dart/utils/XmlHelpers.hpp index 2baf41d77b11d..45a91206425d6 100644 --- a/dart/utils/XmlHelpers.hpp +++ b/dart/utils/XmlHelpers.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/sdf/SdfParser.cpp b/dart/utils/sdf/SdfParser.cpp index 691c0c4bf0587..39f1107b49091 100644 --- a/dart/utils/sdf/SdfParser.cpp +++ b/dart/utils/sdf/SdfParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/sdf/SdfParser.hpp b/dart/utils/sdf/SdfParser.hpp index 110399fb40720..24ca007b099d1 100644 --- a/dart/utils/sdf/SdfParser.hpp +++ b/dart/utils/sdf/SdfParser.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/urdf/BackwardCompatibility.hpp.in b/dart/utils/urdf/BackwardCompatibility.hpp.in index 35dcdf23317cb..a720bf3211b12 100644 --- a/dart/utils/urdf/BackwardCompatibility.hpp.in +++ b/dart/utils/urdf/BackwardCompatibility.hpp.in @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/urdf/DartLoader.cpp b/dart/utils/urdf/DartLoader.cpp index 9e9472e7746e5..56aefa18b7455 100644 --- a/dart/utils/urdf/DartLoader.cpp +++ b/dart/utils/urdf/DartLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/urdf/DartLoader.hpp b/dart/utils/urdf/DartLoader.hpp index 6c39ccde381a5..4f64eadf2e4c4 100644 --- a/dart/utils/urdf/DartLoader.hpp +++ b/dart/utils/urdf/DartLoader.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/dart/utils/urdf/URDFTypes.hpp b/dart/utils/urdf/URDFTypes.hpp index 1a5864323d03f..eccf8efdb0180 100644 --- a/dart/utils/urdf/URDFTypes.hpp +++ b/dart/utils/urdf/URDFTypes.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/addDeleteSkels/Main.cpp b/examples/addDeleteSkels/Main.cpp index c5775261d6e19..bb806a734abd3 100644 --- a/examples/addDeleteSkels/Main.cpp +++ b/examples/addDeleteSkels/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/addDeleteSkels/MyWindow.cpp b/examples/addDeleteSkels/MyWindow.cpp index cdb3270cc29ae..c13ecee0b9866 100644 --- a/examples/addDeleteSkels/MyWindow.cpp +++ b/examples/addDeleteSkels/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/addDeleteSkels/MyWindow.hpp b/examples/addDeleteSkels/MyWindow.hpp index 442a455a87874..66108df7a52a6 100644 --- a/examples/addDeleteSkels/MyWindow.hpp +++ b/examples/addDeleteSkels/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/Controller.cpp b/examples/atlasSimbicon/Controller.cpp index 8de77a5864b0e..1e014fb46007e 100644 --- a/examples/atlasSimbicon/Controller.cpp +++ b/examples/atlasSimbicon/Controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/Controller.hpp b/examples/atlasSimbicon/Controller.hpp index a6c2ac0722007..b00daaa449fc9 100644 --- a/examples/atlasSimbicon/Controller.hpp +++ b/examples/atlasSimbicon/Controller.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/Humanoid.cpp b/examples/atlasSimbicon/Humanoid.cpp index 2136558f83a8e..064aae7de1f57 100644 --- a/examples/atlasSimbicon/Humanoid.cpp +++ b/examples/atlasSimbicon/Humanoid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/Humanoid.hpp b/examples/atlasSimbicon/Humanoid.hpp index eeaf43fa1e7ad..7b007e62403e1 100644 --- a/examples/atlasSimbicon/Humanoid.hpp +++ b/examples/atlasSimbicon/Humanoid.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/Main.cpp b/examples/atlasSimbicon/Main.cpp index 50f16ea76dbf9..0a51522706c7a 100644 --- a/examples/atlasSimbicon/Main.cpp +++ b/examples/atlasSimbicon/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/MyWindow.cpp b/examples/atlasSimbicon/MyWindow.cpp index ad6398852b28f..278bc662c8503 100644 --- a/examples/atlasSimbicon/MyWindow.cpp +++ b/examples/atlasSimbicon/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/MyWindow.hpp b/examples/atlasSimbicon/MyWindow.hpp index 1ce14ce639774..f07a58c6443d2 100644 --- a/examples/atlasSimbicon/MyWindow.hpp +++ b/examples/atlasSimbicon/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/State.cpp b/examples/atlasSimbicon/State.cpp index 325237df33474..fdf0ec794f167 100644 --- a/examples/atlasSimbicon/State.cpp +++ b/examples/atlasSimbicon/State.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/State.hpp b/examples/atlasSimbicon/State.hpp index 2f7685f8deb94..58930c30632bb 100644 --- a/examples/atlasSimbicon/State.hpp +++ b/examples/atlasSimbicon/State.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/StateMachine.cpp b/examples/atlasSimbicon/StateMachine.cpp index b83ad12f2d31b..68eca3212ecd9 100644 --- a/examples/atlasSimbicon/StateMachine.cpp +++ b/examples/atlasSimbicon/StateMachine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/StateMachine.hpp b/examples/atlasSimbicon/StateMachine.hpp index 880135727891e..7ad9114c684e4 100644 --- a/examples/atlasSimbicon/StateMachine.hpp +++ b/examples/atlasSimbicon/StateMachine.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/TerminalCondition.cpp b/examples/atlasSimbicon/TerminalCondition.cpp index a5d6d0cb71efb..c899c68f226ec 100644 --- a/examples/atlasSimbicon/TerminalCondition.cpp +++ b/examples/atlasSimbicon/TerminalCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/atlasSimbicon/TerminalCondition.hpp b/examples/atlasSimbicon/TerminalCondition.hpp index e4489fc05a9b9..537f0cf3cb15e 100644 --- a/examples/atlasSimbicon/TerminalCondition.hpp +++ b/examples/atlasSimbicon/TerminalCondition.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/bipedStand/Controller.cpp b/examples/bipedStand/Controller.cpp index 55aa42ef3348e..d7d54687660aa 100644 --- a/examples/bipedStand/Controller.cpp +++ b/examples/bipedStand/Controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/bipedStand/Controller.hpp b/examples/bipedStand/Controller.hpp index dc50dac96f129..840625cbca132 100644 --- a/examples/bipedStand/Controller.hpp +++ b/examples/bipedStand/Controller.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/bipedStand/Main.cpp b/examples/bipedStand/Main.cpp index 6f3e974865e96..fe2f6398535f4 100644 --- a/examples/bipedStand/Main.cpp +++ b/examples/bipedStand/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/bipedStand/MyWindow.cpp b/examples/bipedStand/MyWindow.cpp index 3b9b461020ee6..4cebe88078254 100644 --- a/examples/bipedStand/MyWindow.cpp +++ b/examples/bipedStand/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/bipedStand/MyWindow.hpp b/examples/bipedStand/MyWindow.hpp index 058102ff724b4..ddad19d0a99ce 100644 --- a/examples/bipedStand/MyWindow.hpp +++ b/examples/bipedStand/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/hardcodedDesign/Main.cpp b/examples/hardcodedDesign/Main.cpp index 8d4b685cf63c3..825e54028cd20 100644 --- a/examples/hardcodedDesign/Main.cpp +++ b/examples/hardcodedDesign/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/hardcodedDesign/MyWindow.cpp b/examples/hardcodedDesign/MyWindow.cpp index 24c7205e8419b..c9cd90c9f8bf6 100644 --- a/examples/hardcodedDesign/MyWindow.cpp +++ b/examples/hardcodedDesign/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/hardcodedDesign/MyWindow.hpp b/examples/hardcodedDesign/MyWindow.hpp index 9077dc2d4475c..6af8fe7e93c14 100644 --- a/examples/hardcodedDesign/MyWindow.hpp +++ b/examples/hardcodedDesign/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/humanJointLimits/HumanArmJointLimitConstraint.hpp b/examples/humanJointLimits/HumanArmJointLimitConstraint.hpp index e7361b47218fa..8cb87096f4743 100644 --- a/examples/humanJointLimits/HumanArmJointLimitConstraint.hpp +++ b/examples/humanJointLimits/HumanArmJointLimitConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/humanJointLimits/HumanLegJointLimitConstraint.hpp b/examples/humanJointLimits/HumanLegJointLimitConstraint.hpp index 4a5872e78b6ff..0115eaf2d277b 100644 --- a/examples/humanJointLimits/HumanLegJointLimitConstraint.hpp +++ b/examples/humanJointLimits/HumanLegJointLimitConstraint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/hybridDynamics/Main.cpp b/examples/hybridDynamics/Main.cpp index 8990dcbc03377..fc8b0dbb5112f 100644 --- a/examples/hybridDynamics/Main.cpp +++ b/examples/hybridDynamics/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/hybridDynamics/MyWindow.cpp b/examples/hybridDynamics/MyWindow.cpp index c44db25e9f368..95dd69db4db81 100644 --- a/examples/hybridDynamics/MyWindow.cpp +++ b/examples/hybridDynamics/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/hybridDynamics/MyWindow.hpp b/examples/hybridDynamics/MyWindow.hpp index a13936a5bde78..5eb67db1d4a09 100644 --- a/examples/hybridDynamics/MyWindow.hpp +++ b/examples/hybridDynamics/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/jointConstraints/Controller.cpp b/examples/jointConstraints/Controller.cpp index 8647ae5c45440..b651660057298 100644 --- a/examples/jointConstraints/Controller.cpp +++ b/examples/jointConstraints/Controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/jointConstraints/Controller.hpp b/examples/jointConstraints/Controller.hpp index 14b3f24b79202..d71a99056ea11 100644 --- a/examples/jointConstraints/Controller.hpp +++ b/examples/jointConstraints/Controller.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/jointConstraints/Main.cpp b/examples/jointConstraints/Main.cpp index 771bfdadd2d8a..e9ea201801c34 100644 --- a/examples/jointConstraints/Main.cpp +++ b/examples/jointConstraints/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/jointConstraints/MyWindow.cpp b/examples/jointConstraints/MyWindow.cpp index d534c3338e390..464baf5c4d88b 100644 --- a/examples/jointConstraints/MyWindow.cpp +++ b/examples/jointConstraints/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/jointConstraints/MyWindow.hpp b/examples/jointConstraints/MyWindow.hpp index d5301537c785b..b12126690054e 100644 --- a/examples/jointConstraints/MyWindow.hpp +++ b/examples/jointConstraints/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/mixedChain/Main.cpp b/examples/mixedChain/Main.cpp index 1684c509a4a27..60eff4d216cb1 100644 --- a/examples/mixedChain/Main.cpp +++ b/examples/mixedChain/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/mixedChain/MyWindow.cpp b/examples/mixedChain/MyWindow.cpp index 8dff888230ae8..0298c4b7caea6 100644 --- a/examples/mixedChain/MyWindow.cpp +++ b/examples/mixedChain/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/mixedChain/MyWindow.hpp b/examples/mixedChain/MyWindow.hpp index 509e49199c1dc..a2acbbe54add3 100644 --- a/examples/mixedChain/MyWindow.hpp +++ b/examples/mixedChain/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/operationalSpaceControl/Controller.cpp b/examples/operationalSpaceControl/Controller.cpp index a495f5900fd02..f2636ce22d03a 100644 --- a/examples/operationalSpaceControl/Controller.cpp +++ b/examples/operationalSpaceControl/Controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/operationalSpaceControl/Controller.hpp b/examples/operationalSpaceControl/Controller.hpp index 2739873d95ac8..2da9ba8b3e7d1 100644 --- a/examples/operationalSpaceControl/Controller.hpp +++ b/examples/operationalSpaceControl/Controller.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/operationalSpaceControl/Main.cpp b/examples/operationalSpaceControl/Main.cpp index 78915f55bb5ca..09add7d49bb19 100644 --- a/examples/operationalSpaceControl/Main.cpp +++ b/examples/operationalSpaceControl/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/operationalSpaceControl/MyWindow.cpp b/examples/operationalSpaceControl/MyWindow.cpp index 8283fadf232de..322a52336e5fe 100644 --- a/examples/operationalSpaceControl/MyWindow.cpp +++ b/examples/operationalSpaceControl/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/operationalSpaceControl/MyWindow.hpp b/examples/operationalSpaceControl/MyWindow.hpp index b271f886043ca..a97efed539d86 100644 --- a/examples/operationalSpaceControl/MyWindow.hpp +++ b/examples/operationalSpaceControl/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasPuppet/osgAtlasPuppet.cpp b/examples/osgExamples/osgAtlasPuppet/osgAtlasPuppet.cpp index 591419daf16bf..719c0049f20e9 100644 --- a/examples/osgExamples/osgAtlasPuppet/osgAtlasPuppet.cpp +++ b/examples/osgExamples/osgAtlasPuppet/osgAtlasPuppet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.cpp b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.cpp index b285f7b1c628a..15fb14e0d98db 100644 --- a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.hpp b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.hpp index 16e4f732d8837..6c58434f18ae1 100644 --- a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconEventHandler.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.cpp b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.cpp index 9ba6f3c17c138..055e11d4b3af3 100644 --- a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.hpp b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.hpp index ed9c2964fced9..a51ba26b39622 100644 --- a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWidget.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.cpp b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.cpp index 0e3714497fb8c..e8858735914f1 100644 --- a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.hpp b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.hpp index 31d7bdd04fb83..be44c87403bbe 100644 --- a/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/AtlasSimbiconWorldNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/Controller.cpp b/examples/osgExamples/osgAtlasSimbicon/Controller.cpp index 2bd66fbc3879b..842f6ab8f8f55 100644 --- a/examples/osgExamples/osgAtlasSimbicon/Controller.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/Controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/Controller.hpp b/examples/osgExamples/osgAtlasSimbicon/Controller.hpp index 2736c626a68bb..129db15f5d83f 100644 --- a/examples/osgExamples/osgAtlasSimbicon/Controller.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/Controller.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/State.cpp b/examples/osgExamples/osgAtlasSimbicon/State.cpp index 325237df33474..fdf0ec794f167 100644 --- a/examples/osgExamples/osgAtlasSimbicon/State.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/State.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/State.hpp b/examples/osgExamples/osgAtlasSimbicon/State.hpp index 2f7685f8deb94..58930c30632bb 100644 --- a/examples/osgExamples/osgAtlasSimbicon/State.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/State.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/StateMachine.cpp b/examples/osgExamples/osgAtlasSimbicon/StateMachine.cpp index 45ddbcca919e2..1c082d1589539 100644 --- a/examples/osgExamples/osgAtlasSimbicon/StateMachine.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/StateMachine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/StateMachine.hpp b/examples/osgExamples/osgAtlasSimbicon/StateMachine.hpp index 8b8239dc740d2..614729e033732 100644 --- a/examples/osgExamples/osgAtlasSimbicon/StateMachine.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/StateMachine.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.cpp b/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.cpp index a5d6d0cb71efb..c899c68f226ec 100644 --- a/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.hpp b/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.hpp index e4489fc05a9b9..537f0cf3cb15e 100644 --- a/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.hpp +++ b/examples/osgExamples/osgAtlasSimbicon/TerminalCondition.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgAtlasSimbicon/main.cpp b/examples/osgExamples/osgAtlasSimbicon/main.cpp index 834413b2760b1..e9387d1607caf 100644 --- a/examples/osgExamples/osgAtlasSimbicon/main.cpp +++ b/examples/osgExamples/osgAtlasSimbicon/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgBoxStacking/osgBoxStacking.cpp b/examples/osgExamples/osgBoxStacking/osgBoxStacking.cpp index b485b54b9af46..c93e200dd5cae 100644 --- a/examples/osgExamples/osgBoxStacking/osgBoxStacking.cpp +++ b/examples/osgExamples/osgBoxStacking/osgBoxStacking.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgDragAndDrop/osgDragAndDrop.cpp b/examples/osgExamples/osgDragAndDrop/osgDragAndDrop.cpp index e688f0d974da3..9ebb39f8f75c9 100644 --- a/examples/osgExamples/osgDragAndDrop/osgDragAndDrop.cpp +++ b/examples/osgExamples/osgDragAndDrop/osgDragAndDrop.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgEmpty/osgEmpty.cpp b/examples/osgExamples/osgEmpty/osgEmpty.cpp index 214ca313df141..aec30e0442320 100644 --- a/examples/osgExamples/osgEmpty/osgEmpty.cpp +++ b/examples/osgExamples/osgEmpty/osgEmpty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgHuboPuppet/osgHuboPuppet.cpp b/examples/osgExamples/osgHuboPuppet/osgHuboPuppet.cpp index 90bb2c4703a3f..4d160f1a99f6e 100644 --- a/examples/osgExamples/osgHuboPuppet/osgHuboPuppet.cpp +++ b/examples/osgExamples/osgHuboPuppet/osgHuboPuppet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgImGui/osgImGui.cpp b/examples/osgExamples/osgImGui/osgImGui.cpp index 3324a586a8d37..46054818fc744 100644 --- a/examples/osgExamples/osgImGui/osgImGui.cpp +++ b/examples/osgExamples/osgImGui/osgImGui.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgOperationalSpaceControl/osgOperationalSpaceControl.cpp b/examples/osgExamples/osgOperationalSpaceControl/osgOperationalSpaceControl.cpp index 0a2bb42a258b0..361088dd6cac5 100644 --- a/examples/osgExamples/osgOperationalSpaceControl/osgOperationalSpaceControl.cpp +++ b/examples/osgExamples/osgOperationalSpaceControl/osgOperationalSpaceControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgSoftBodies/osgSoftBodies.cpp b/examples/osgExamples/osgSoftBodies/osgSoftBodies.cpp index 1ed1b536e3620..9a28e95282724 100644 --- a/examples/osgExamples/osgSoftBodies/osgSoftBodies.cpp +++ b/examples/osgExamples/osgSoftBodies/osgSoftBodies.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgTinkertoy/TinkertoyWidget.cpp b/examples/osgExamples/osgTinkertoy/TinkertoyWidget.cpp index 186f5abd65c1b..312d2b12a0878 100644 --- a/examples/osgExamples/osgTinkertoy/TinkertoyWidget.cpp +++ b/examples/osgExamples/osgTinkertoy/TinkertoyWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgTinkertoy/TinkertoyWidget.hpp b/examples/osgExamples/osgTinkertoy/TinkertoyWidget.hpp index 60cb59531df70..dcee8503347c4 100644 --- a/examples/osgExamples/osgTinkertoy/TinkertoyWidget.hpp +++ b/examples/osgExamples/osgTinkertoy/TinkertoyWidget.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.cpp b/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.cpp index 044ee8c029069..6604cff3d417b 100644 --- a/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.cpp +++ b/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.hpp b/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.hpp index 06c19f95607d1..6bb07ca99396e 100644 --- a/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.hpp +++ b/examples/osgExamples/osgTinkertoy/TinkertoyWorldNode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgTinkertoy/main.cpp b/examples/osgExamples/osgTinkertoy/main.cpp index 9dced77514fd3..5fe65dce7aa04 100644 --- a/examples/osgExamples/osgTinkertoy/main.cpp +++ b/examples/osgExamples/osgTinkertoy/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/Helpers.cpp b/examples/osgExamples/osgWamIkFast/Helpers.cpp index f3d776da38752..f748d9f5ce5c6 100644 --- a/examples/osgExamples/osgWamIkFast/Helpers.cpp +++ b/examples/osgExamples/osgWamIkFast/Helpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/Helpers.hpp b/examples/osgExamples/osgWamIkFast/Helpers.hpp index 3d8a47c1c30aa..b08b0577160e3 100644 --- a/examples/osgExamples/osgWamIkFast/Helpers.hpp +++ b/examples/osgExamples/osgWamIkFast/Helpers.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/InputHandler.cpp b/examples/osgExamples/osgWamIkFast/InputHandler.cpp index b9684e5b78184..02a52655de466 100644 --- a/examples/osgExamples/osgWamIkFast/InputHandler.cpp +++ b/examples/osgExamples/osgWamIkFast/InputHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/InputHandler.hpp b/examples/osgExamples/osgWamIkFast/InputHandler.hpp index f74c318b13261..8e842a1781bf3 100644 --- a/examples/osgExamples/osgWamIkFast/InputHandler.hpp +++ b/examples/osgExamples/osgWamIkFast/InputHandler.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/WamWorld.cpp b/examples/osgExamples/osgWamIkFast/WamWorld.cpp index ae5b27462eb2f..532307242eaba 100644 --- a/examples/osgExamples/osgWamIkFast/WamWorld.cpp +++ b/examples/osgExamples/osgWamIkFast/WamWorld.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/WamWorld.hpp b/examples/osgExamples/osgWamIkFast/WamWorld.hpp index b725849087304..4e8ab325db76f 100644 --- a/examples/osgExamples/osgWamIkFast/WamWorld.hpp +++ b/examples/osgExamples/osgWamIkFast/WamWorld.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/osgExamples/osgWamIkFast/osgWamIkFast.cpp b/examples/osgExamples/osgWamIkFast/osgWamIkFast.cpp index 5340ded9c3798..7b19c7b4c2392 100644 --- a/examples/osgExamples/osgWamIkFast/osgWamIkFast.cpp +++ b/examples/osgExamples/osgWamIkFast/osgWamIkFast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidChain/Main.cpp b/examples/rigidChain/Main.cpp index 6ba1d9449f283..f23f84dd20de0 100644 --- a/examples/rigidChain/Main.cpp +++ b/examples/rigidChain/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidChain/MyWindow.cpp b/examples/rigidChain/MyWindow.cpp index 9c4166fcc00d7..0614138eb580e 100644 --- a/examples/rigidChain/MyWindow.cpp +++ b/examples/rigidChain/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidChain/MyWindow.hpp b/examples/rigidChain/MyWindow.hpp index 5044867be5d76..0fd73119f2f6b 100644 --- a/examples/rigidChain/MyWindow.hpp +++ b/examples/rigidChain/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidCubes/MyWindow.cpp b/examples/rigidCubes/MyWindow.cpp index 668cded47e9ee..015fdee7c340a 100644 --- a/examples/rigidCubes/MyWindow.cpp +++ b/examples/rigidCubes/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidCubes/MyWindow.hpp b/examples/rigidCubes/MyWindow.hpp index c1d82a621672a..71f4406b4c19c 100644 --- a/examples/rigidCubes/MyWindow.hpp +++ b/examples/rigidCubes/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidCubes/main.cpp b/examples/rigidCubes/main.cpp index 11e558f7c49b1..5e86776611bca 100644 --- a/examples/rigidCubes/main.cpp +++ b/examples/rigidCubes/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidLoop/Main.cpp b/examples/rigidLoop/Main.cpp index 87cc3073d36c6..8f5063357c479 100644 --- a/examples/rigidLoop/Main.cpp +++ b/examples/rigidLoop/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidLoop/MyWindow.cpp b/examples/rigidLoop/MyWindow.cpp index e8303e27406d0..9a1629d936cf9 100644 --- a/examples/rigidLoop/MyWindow.cpp +++ b/examples/rigidLoop/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidLoop/MyWindow.hpp b/examples/rigidLoop/MyWindow.hpp index d175e972f8227..bed8c1cca48ca 100644 --- a/examples/rigidLoop/MyWindow.hpp +++ b/examples/rigidLoop/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidShapes/Main.cpp b/examples/rigidShapes/Main.cpp index 5527c2aaaf7da..c86bcb40b9686 100644 --- a/examples/rigidShapes/Main.cpp +++ b/examples/rigidShapes/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidShapes/MyWindow.cpp b/examples/rigidShapes/MyWindow.cpp index 6675262a4810f..ab0794f12a6f3 100644 --- a/examples/rigidShapes/MyWindow.cpp +++ b/examples/rigidShapes/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/rigidShapes/MyWindow.hpp b/examples/rigidShapes/MyWindow.hpp index a676c34437cf2..1eb0e86cc6d7c 100644 --- a/examples/rigidShapes/MyWindow.hpp +++ b/examples/rigidShapes/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/simpleFrames/Main.cpp b/examples/simpleFrames/Main.cpp index 1370f5ffd3189..bc3df6deb1f39 100644 --- a/examples/simpleFrames/Main.cpp +++ b/examples/simpleFrames/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/softBodies/Main.cpp b/examples/softBodies/Main.cpp index d111252c36332..a7f43d7378534 100644 --- a/examples/softBodies/Main.cpp +++ b/examples/softBodies/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/softBodies/MyWindow.cpp b/examples/softBodies/MyWindow.cpp index f1b6507a069bc..64d513f02bcce 100644 --- a/examples/softBodies/MyWindow.cpp +++ b/examples/softBodies/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/softBodies/MyWindow.hpp b/examples/softBodies/MyWindow.hpp index 2943e21b52f9a..71c4506a74dee 100644 --- a/examples/softBodies/MyWindow.hpp +++ b/examples/softBodies/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/speedTest/Main.cpp b/examples/speedTest/Main.cpp index 731e950d084fe..2e3ad3aeefb7a 100644 --- a/examples/speedTest/Main.cpp +++ b/examples/speedTest/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/vehicle/Main.cpp b/examples/vehicle/Main.cpp index 631e1d0f8f375..e42376a1afc17 100644 --- a/examples/vehicle/Main.cpp +++ b/examples/vehicle/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/vehicle/MyWindow.cpp b/examples/vehicle/MyWindow.cpp index a75a998f0209f..e6d384c01533b 100644 --- a/examples/vehicle/MyWindow.cpp +++ b/examples/vehicle/MyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/examples/vehicle/MyWindow.hpp b/examples/vehicle/MyWindow.hpp index 8d603dfad60ac..cf45f6209939e 100644 --- a/examples/vehicle/MyWindow.hpp +++ b/examples/vehicle/MyWindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialBiped-Finished/tutorialBiped-Finished.cpp b/tutorials/tutorialBiped-Finished/tutorialBiped-Finished.cpp index 9b9fc53f6eff7..9993e87b2d959 100644 --- a/tutorials/tutorialBiped-Finished/tutorialBiped-Finished.cpp +++ b/tutorials/tutorialBiped-Finished/tutorialBiped-Finished.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialBiped/tutorialBiped.cpp b/tutorials/tutorialBiped/tutorialBiped.cpp index 09f7373f27309..055c3ceb97ccb 100644 --- a/tutorials/tutorialBiped/tutorialBiped.cpp +++ b/tutorials/tutorialBiped/tutorialBiped.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialCollisions-Finished/tutorialCollisions-Finished.cpp b/tutorials/tutorialCollisions-Finished/tutorialCollisions-Finished.cpp index ee600f0a4b5b3..53150886c2ea3 100644 --- a/tutorials/tutorialCollisions-Finished/tutorialCollisions-Finished.cpp +++ b/tutorials/tutorialCollisions-Finished/tutorialCollisions-Finished.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialCollisions/tutorialCollisions.cpp b/tutorials/tutorialCollisions/tutorialCollisions.cpp index 506347139b31d..f8dc387e6d0e9 100644 --- a/tutorials/tutorialCollisions/tutorialCollisions.cpp +++ b/tutorials/tutorialCollisions/tutorialCollisions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialDominoes-Finished/tutorialDominoes-Finished.cpp b/tutorials/tutorialDominoes-Finished/tutorialDominoes-Finished.cpp index 2eb54db1e0a50..04d77f932736c 100644 --- a/tutorials/tutorialDominoes-Finished/tutorialDominoes-Finished.cpp +++ b/tutorials/tutorialDominoes-Finished/tutorialDominoes-Finished.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialDominoes/tutorialDominoes.cpp b/tutorials/tutorialDominoes/tutorialDominoes.cpp index 322f760e7de44..71fbc2d919c38 100644 --- a/tutorials/tutorialDominoes/tutorialDominoes.cpp +++ b/tutorials/tutorialDominoes/tutorialDominoes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialMultiPendulum-Finished/tutorialMultiPendulum-Finished.cpp b/tutorials/tutorialMultiPendulum-Finished/tutorialMultiPendulum-Finished.cpp index 0d2a7c5144cb4..dbd9c931ba713 100644 --- a/tutorials/tutorialMultiPendulum-Finished/tutorialMultiPendulum-Finished.cpp +++ b/tutorials/tutorialMultiPendulum-Finished/tutorialMultiPendulum-Finished.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/tutorials/tutorialMultiPendulum/tutorialMultiPendulum.cpp b/tutorials/tutorialMultiPendulum/tutorialMultiPendulum.cpp index c99dc70655a2a..3a72020b74dcd 100644 --- a/tutorials/tutorialMultiPendulum/tutorialMultiPendulum.cpp +++ b/tutorials/tutorialMultiPendulum/tutorialMultiPendulum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt index 1321c1ae5a990..234b0b4ed2272 100644 --- a/unittests/CMakeLists.txt +++ b/unittests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) 2011-2018, The DART development contributors +# Copyright (c) 2011-2019, The DART development contributors # All rights reserved. # # The list of contributors can be found at: diff --git a/unittests/TestHelpers.hpp b/unittests/TestHelpers.hpp index 8ad5e7988d1d4..01d4f45d1374c 100644 --- a/unittests/TestHelpers.hpp +++ b/unittests/TestHelpers.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Building.cpp b/unittests/comprehensive/test_Building.cpp index 6abd8567f13b9..00a3bfaf484a5 100644 --- a/unittests/comprehensive/test_Building.cpp +++ b/unittests/comprehensive/test_Building.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Collision.cpp b/unittests/comprehensive/test_Collision.cpp index 340ec8e8a12c0..33bda79d35724 100644 --- a/unittests/comprehensive/test_Collision.cpp +++ b/unittests/comprehensive/test_Collision.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Common.cpp b/unittests/comprehensive/test_Common.cpp index f4b7b7d173818..5d7c2b9595a9d 100644 --- a/unittests/comprehensive/test_Common.cpp +++ b/unittests/comprehensive/test_Common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Concurrency.cpp b/unittests/comprehensive/test_Concurrency.cpp index 2af960dec8dc6..7d14a59f74f85 100644 --- a/unittests/comprehensive/test_Concurrency.cpp +++ b/unittests/comprehensive/test_Concurrency.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Constraint.cpp b/unittests/comprehensive/test_Constraint.cpp index 8e66f3b0a4105..d1a68a223aeaf 100644 --- a/unittests/comprehensive/test_Constraint.cpp +++ b/unittests/comprehensive/test_Constraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Distance.cpp b/unittests/comprehensive/test_Distance.cpp index 1150c353010c8..55ce942e16264 100644 --- a/unittests/comprehensive/test_Distance.cpp +++ b/unittests/comprehensive/test_Distance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Dynamics.cpp b/unittests/comprehensive/test_Dynamics.cpp index a35efdd0a2cac..4424f0e33d6ba 100644 --- a/unittests/comprehensive/test_Dynamics.cpp +++ b/unittests/comprehensive/test_Dynamics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_ForwardKinematics.cpp b/unittests/comprehensive/test_ForwardKinematics.cpp index 11d31c6e8c332..8669273f51aa0 100644 --- a/unittests/comprehensive/test_ForwardKinematics.cpp +++ b/unittests/comprehensive/test_ForwardKinematics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Frames.cpp b/unittests/comprehensive/test_Frames.cpp index fa4b99566df28..7068335196c97 100644 --- a/unittests/comprehensive/test_Frames.cpp +++ b/unittests/comprehensive/test_Frames.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_InverseKinematics.cpp b/unittests/comprehensive/test_InverseKinematics.cpp index 8a1c6119a50a1..ab4c37defc643 100644 --- a/unittests/comprehensive/test_InverseKinematics.cpp +++ b/unittests/comprehensive/test_InverseKinematics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Joints.cpp b/unittests/comprehensive/test_Joints.cpp index fc1c6c4afa071..75cba6e616d7e 100644 --- a/unittests/comprehensive/test_Joints.cpp +++ b/unittests/comprehensive/test_Joints.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_MetaSkeleton.cpp b/unittests/comprehensive/test_MetaSkeleton.cpp index 51a1973cb1ddd..681651c0261b6 100644 --- a/unittests/comprehensive/test_MetaSkeleton.cpp +++ b/unittests/comprehensive/test_MetaSkeleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_NameManagement.cpp b/unittests/comprehensive/test_NameManagement.cpp index d2f58d7ac7fc7..736b1eead92e4 100644 --- a/unittests/comprehensive/test_NameManagement.cpp +++ b/unittests/comprehensive/test_NameManagement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_Skeleton.cpp b/unittests/comprehensive/test_Skeleton.cpp index 1d337810ebdf9..8f4d142401a51 100644 --- a/unittests/comprehensive/test_Skeleton.cpp +++ b/unittests/comprehensive/test_Skeleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_SoftDynamics.cpp b/unittests/comprehensive/test_SoftDynamics.cpp index a001f34814262..1ec66aef1b519 100644 --- a/unittests/comprehensive/test_SoftDynamics.cpp +++ b/unittests/comprehensive/test_SoftDynamics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/comprehensive/test_World.cpp b/unittests/comprehensive/test_World.cpp index 0984e373d18e0..c982a28145131 100644 --- a/unittests/comprehensive/test_World.cpp +++ b/unittests/comprehensive/test_World.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/regression/test_Issue000Template.cpp b/unittests/regression/test_Issue000Template.cpp index 9786a8a1b7154..53101cb39aacb 100644 --- a/unittests/regression/test_Issue000Template.cpp +++ b/unittests/regression/test_Issue000Template.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/regression/test_Issue1184.cpp b/unittests/regression/test_Issue1184.cpp index 93e4f5a250a40..17b7991136d20 100644 --- a/unittests/regression/test_Issue1184.cpp +++ b/unittests/regression/test_Issue1184.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/regression/test_Issue838.cpp b/unittests/regression/test_Issue838.cpp index e2f8d9799b1ec..e424165fc50d6 100644 --- a/unittests/regression/test_Issue838.cpp +++ b/unittests/regression/test_Issue838.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/regression/test_Issue895.cpp b/unittests/regression/test_Issue895.cpp index 105fd3faad845..4a53c6c055935 100644 --- a/unittests/regression/test_Issue895.cpp +++ b/unittests/regression/test_Issue895.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/regression/test_Issue986.cpp b/unittests/regression/test_Issue986.cpp index f5bb753484721..0789451a480fa 100644 --- a/unittests/regression/test_Issue986.cpp +++ b/unittests/regression/test_Issue986.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/testKinematics.cpp_ b/unittests/testKinematics.cpp_ index 5c6b4f0443469..1c055b19922c1 100644 --- a/unittests/testKinematics.cpp_ +++ b/unittests/testKinematics.cpp_ @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/SharedLibraryWamIkFast.cpp b/unittests/unit/SharedLibraryWamIkFast.cpp index a29cecd20c96c..ab385370586f4 100644 --- a/unittests/unit/SharedLibraryWamIkFast.cpp +++ b/unittests/unit/SharedLibraryWamIkFast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/SharedLibraryWamIkFast.hpp b/unittests/unit/SharedLibraryWamIkFast.hpp index ea4a772f4d84f..5677fc045ee29 100644 --- a/unittests/unit/SharedLibraryWamIkFast.hpp +++ b/unittests/unit/SharedLibraryWamIkFast.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Aspect.cpp b/unittests/unit/test_Aspect.cpp index 447ac1383f0f9..a9e5b6e437db1 100644 --- a/unittests/unit/test_Aspect.cpp +++ b/unittests/unit/test_Aspect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_CollisionGroups.cpp b/unittests/unit/test_CollisionGroups.cpp index c7eb2116cda75..1fe44822c7ff1 100644 --- a/unittests/unit/test_CollisionGroups.cpp +++ b/unittests/unit/test_CollisionGroups.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_CompositeResourceRetriever.cpp b/unittests/unit/test_CompositeResourceRetriever.cpp index 67908c934a603..a8203dc5567a1 100644 --- a/unittests/unit/test_CompositeResourceRetriever.cpp +++ b/unittests/unit/test_CompositeResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_ContactConstraint.cpp b/unittests/unit/test_ContactConstraint.cpp index b56ee664d890a..93883150d1b4e 100644 --- a/unittests/unit/test_ContactConstraint.cpp +++ b/unittests/unit/test_ContactConstraint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_DartLoader.cpp b/unittests/unit/test_DartLoader.cpp index bc6cd5cf33f6a..a5d0b0e7e753f 100644 --- a/unittests/unit/test_DartLoader.cpp +++ b/unittests/unit/test_DartLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_DartResourceRetriever.cpp b/unittests/unit/test_DartResourceRetriever.cpp index 9de99bd6d52a0..7f98788298d5c 100644 --- a/unittests/unit/test_DartResourceRetriever.cpp +++ b/unittests/unit/test_DartResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Factory.cpp b/unittests/unit/test_Factory.cpp index c84ab9c55abc5..701eea48e92ae 100644 --- a/unittests/unit/test_Factory.cpp +++ b/unittests/unit/test_Factory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_FileInfoWorld.cpp b/unittests/unit/test_FileInfoWorld.cpp index 19bab84628c24..97e416f19d26b 100644 --- a/unittests/unit/test_FileInfoWorld.cpp +++ b/unittests/unit/test_FileInfoWorld.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_GenericJoints.cpp b/unittests/unit/test_GenericJoints.cpp index 34da6b2b312d4..9df4c8cadc8d1 100644 --- a/unittests/unit/test_GenericJoints.cpp +++ b/unittests/unit/test_GenericJoints.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Geometry.cpp b/unittests/unit/test_Geometry.cpp index 7853864d2646e..b52edc16f2b0a 100644 --- a/unittests/unit/test_Geometry.cpp +++ b/unittests/unit/test_Geometry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_IkFast.cpp b/unittests/unit/test_IkFast.cpp index 83d15880bb46f..e92689710fa82 100644 --- a/unittests/unit/test_IkFast.cpp +++ b/unittests/unit/test_IkFast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Lemke.cpp b/unittests/unit/test_Lemke.cpp index c45ffe278191b..72cb7c9beb263 100644 --- a/unittests/unit/test_Lemke.cpp +++ b/unittests/unit/test_Lemke.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_LocalResourceRetriever.cpp b/unittests/unit/test_LocalResourceRetriever.cpp index 211df86a772cd..e6db33fb38081 100644 --- a/unittests/unit/test_LocalResourceRetriever.cpp +++ b/unittests/unit/test_LocalResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Math.cpp b/unittests/unit/test_Math.cpp index 0291a19bd4ade..0692520d8a7e6 100644 --- a/unittests/unit/test_Math.cpp +++ b/unittests/unit/test_Math.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Optimizer.cpp b/unittests/unit/test_Optimizer.cpp index b5ec0e8882740..cda950ff1079c 100644 --- a/unittests/unit/test_Optimizer.cpp +++ b/unittests/unit/test_Optimizer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_PackageResourceRetriever.cpp b/unittests/unit/test_PackageResourceRetriever.cpp index a68b65078bd53..0dc89150cf967 100644 --- a/unittests/unit/test_PackageResourceRetriever.cpp +++ b/unittests/unit/test_PackageResourceRetriever.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Random.cpp b/unittests/unit/test_Random.cpp index b534ce635d15b..8fba132d0eb14 100644 --- a/unittests/unit/test_Random.cpp +++ b/unittests/unit/test_Random.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_ScrewJoint.cpp b/unittests/unit/test_ScrewJoint.cpp index 3884febdb6e83..2d205b58be9eb 100644 --- a/unittests/unit/test_ScrewJoint.cpp +++ b/unittests/unit/test_ScrewJoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_SdfParser.cpp b/unittests/unit/test_SdfParser.cpp index f248930aa03ba..ef0ec38248548 100644 --- a/unittests/unit/test_SdfParser.cpp +++ b/unittests/unit/test_SdfParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Signal.cpp b/unittests/unit/test_Signal.cpp index a357fe7815973..09a8b7ef08953 100644 --- a/unittests/unit/test_Signal.cpp +++ b/unittests/unit/test_Signal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_SkelParser.cpp b/unittests/unit/test_SkelParser.cpp index e57f7c359e549..85a301160f454 100644 --- a/unittests/unit/test_SkelParser.cpp +++ b/unittests/unit/test_SkelParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Subscriptions.cpp b/unittests/unit/test_Subscriptions.cpp index fefa8c7f58d02..5ea405fe61116 100644 --- a/unittests/unit/test_Subscriptions.cpp +++ b/unittests/unit/test_Subscriptions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_Uri.cpp b/unittests/unit/test_Uri.cpp index b2477f6c1fb10..89f206e46dfc3 100644 --- a/unittests/unit/test_Uri.cpp +++ b/unittests/unit/test_Uri.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: diff --git a/unittests/unit/test_VskParser.cpp b/unittests/unit/test_VskParser.cpp index 1cf13df157bec..7d1dbf5836d84 100644 --- a/unittests/unit/test_VskParser.cpp +++ b/unittests/unit/test_VskParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2018, The DART development contributors + * Copyright (c) 2011-2019, The DART development contributors * All rights reserved. * * The list of contributors can be found at: