File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -88,15 +88,14 @@ present in the framework.
88
88
1 . Preserve existing formatting; i.e. do not reformat code for its own sake
89
89
1 . Search the codebase using ` git grep ` and other tools to discover common
90
90
naming conventions, etc.
91
- 1 . Latin-1 (ISO-8859-1) encoding for Java sources; use ` native2ascii ` to convert
92
- if necessary
91
+ 1 . UTF-8 encoding for Java sources
93
92
94
93
95
94
### Add Apache license header to all new classes
96
95
97
96
``` java
98
97
/*
99
- * Copyright 2002-2015 the original author or authors.
98
+ * Copyright 2002-2016 the original author or authors.
100
99
*
101
100
* Licensed under the Apache License, Version 2.0 (the "License");
102
101
* you may not use this file except in compliance with the License.
@@ -124,11 +123,11 @@ modified a file in 2015 whose header still reads:
124
123
* Copyright 2002-2011 the original author or authors.
125
124
```
126
125
127
- Then be sure to update it to 2015 accordingly:
126
+ Then be sure to update it to 2016 accordingly:
128
127
129
128
```java
130
129
/*
131
- * Copyright 2002-2015 the original author or authors.
130
+ * Copyright 2002-2016 the original author or authors.
132
131
```
133
132
134
133
### Use @since tags for newly-added public API types and methods
You can’t perform that action at this time.
0 commit comments