File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -74,15 +74,14 @@ present in the framework.
74
74
1 . Preserve existing formatting; i.e. do not reformat code for its own sake
75
75
1 . Search the codebase using ` git grep ` and other tools to discover common
76
76
naming conventions, etc.
77
- 1 . Latin-1 (ISO-8859-1) encoding for Java sources; use ` native2ascii ` to convert
78
- if necessary
77
+ 1 . UTF-8 encoding for Java sources
79
78
80
79
81
80
### Add Apache license header to all new classes
82
81
83
82
``` java
84
83
/*
85
- * Copyright 2002-2015 the original author or authors.
84
+ * Copyright 2002-2016 the original author or authors.
86
85
*
87
86
* Licensed under the Apache License, Version 2.0 (the "License");
88
87
* you may not use this file except in compliance with the License.
@@ -110,11 +109,11 @@ modified a file in 2015 whose header still reads:
110
109
* Copyright 2002-2011 the original author or authors.
111
110
```
112
111
113
- Then be sure to update it to 2015 accordingly:
112
+ Then be sure to update it to 2016 accordingly:
114
113
115
114
```java
116
115
/*
117
- * Copyright 2002-2015 the original author or authors.
116
+ * Copyright 2002-2016 the original author or authors.
118
117
```
119
118
120
119
### Use @since tags for newly-added public API types and methods
You can’t perform that action at this time.
0 commit comments