Merge pull request #384 from DevFactory/release/Redundant-Field-Initializer-fix-1

pmd:RedundantFieldInitializer - Redundant-Field-Initializer
This commit is contained in:
Narendra Pathai
2016-02-18 12:39:06 +05:30
12 changed files with 15 additions and 15 deletions

View File

@ -31,7 +31,7 @@ import java.util.ArrayList;
*/
public class CacheStore {
static LruCache cache = null;
static LruCache cache;
private CacheStore() {
}

View File

@ -50,8 +50,8 @@ public class LruCache {
int capacity;
HashMap<String, Node> cache = new HashMap<>();
Node head = null;
Node end = null;
Node head;
Node end;
public LruCache(int capacity) {
this.capacity = capacity;