Skip to content

Commit

Permalink
Update example copyright dates
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen authored Jan 21, 2017
1 parent bc88402 commit 3ec6c0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ present in the framework.

```java
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -102,18 +102,18 @@ package ...;
### Update Apache license header in modified files as necessary

Always check the date range in the license header. For example, if you've
modified a file in 2015 whose header still reads:
modified a file in 2017 whose header still reads:

```java
/*
* Copyright 2002-2011 the original author or authors.
```
Then be sure to update it to 2016 accordingly:
Then be sure to update it to 2017 accordingly:
```java
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2017 the original author or authors.
```
### Use @since tags for newly-added public API types and methods
Expand All @@ -125,7 +125,7 @@ For example:
* ...
*
* @author First Last
* @since 4.2.3
* @since 5.0
* @see ...
*/
```
Expand Down

0 comments on commit 3ec6c0e

Please sign in to comment.