googlearchive / js-marker-clusterer

A marker clustering library for the Google Maps JavaScript API v3.
https://googlemaps.github.io/js-marker-clusterer/docs/reference.html
Apache License 2.0
1.28k stars 772 forks source link

Alter license comment to preserve it after Closure Compiler compilation #79

Closed fritz-c closed 8 years ago

fritz-c commented 8 years ago

Without a @license tag in the license comment, it is squashed by the closure compiler. With this pull request the result is as follows:

/*
 Apache-2.0
 Copyright 2010-present, Google Inc.

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
*/
...compiled code
broady commented 8 years ago

Thanks!

Can you drop the -present and the Apache-2.0 please? Add All Rights Reserved

 /**
 + * @license
 + * Copyright 2010 Google Inc. All Rights Reserved.
 + *
fritz-c commented 8 years ago

Done.