File tree 2 files changed +12
-40
lines changed
2 files changed +12
-40
lines changed Original file line number Diff line number Diff line change 1
1
# History
2
2
3
+ ##v1.2.0 - unreleased
4
+ - Added NeedlessNullnessDetector to report on needless @Nullable / @NonNull
5
+ annotations on primitive / void parameters and return types.
6
+
7
+ ##v1.1.9
8
+ - Fix compatibility with latest android tools.
9
+ - Fix NPE in ` InstanceStateDetector ` when not using constants as keys.
10
+ - Not using constants as keys in ` InstanceStateDetector ` is now reported.
11
+
12
+ ##v1.1.8
13
+ - Use Java 7 instead of 8.
14
+
3
15
##v1.1.7
4
16
* Fix scope of the detectors
5
17
* Fix in ParcelDetector when check for missing calling super
Original file line number Diff line number Diff line change @@ -51,46 +51,6 @@ you `AndroidManifest.xml`
51
51
In the project there is a script that download the jar with all the linters and
52
52
it will copy to your directory ` $HOME/.android/lint/ `
53
53
54
- ## History
55
-
56
- ###v1.1.9
57
- - Fix compatibility with latest android tools.
58
- - Fix NPE in ` InstanceStateDetector ` when not using constants as keys.
59
- - Not using constants as keys in ` InstanceStateDetector ` is now reported.
60
-
61
- ###v1.1.8
62
- - Use Java 7 instead of 8.
63
-
64
- ###v1.1.7
65
- - Fix scope of the detectors
66
- - Fix in ParcelDetector when check for missing calling super
67
-
68
- ###v1.1.6
69
- - Add checks to prevent get incorrect Fields
70
-
71
- ###v1.1.5
72
- - Fix an issue when we are restoring a state
73
-
74
- ###v1.1.4
75
- - Fix checking for getArguments method when gets the variables
76
-
77
- ###v1.1.3
78
- - Check when a state is restored in a local variable and then in a field
79
-
80
- ###v1.1.2
81
- - Fix checking for local variables in InstanceStateDetector
82
-
83
- ###v1.1.1
84
- - Fix reading private method in ParcelDetector
85
- - InstanceStateDetector: Add temporal fix when checking for local variables
86
-
87
- ###v1.1.0
88
- - Add Readme, script for download the jar and licenses.
89
-
90
- ###v1.0.0
91
- - Add ParcelDetector, FactoryMethodDetector, InstanceStateDetector,
92
- ManifestDetector
93
-
94
54
# Copyright and License
95
55
Copyright 2010-2015 Monits.
96
56
You can’t perform that action at this time.
0 commit comments