mehb-groww / test2

Empty catch clauses may hide exceptions JAVA-W0052
Anti-pattern
Major
3 occurrences in this check
 94	        byte[] decrypted = cipherDecrypt.doFinal(encryptedBytes);
 95
 96	        return new String(decrypted);
 97		}catch(Exception e) { 98			 99		}100		return null;
101	}
102
 69
 70	        return DatatypeConverter.printHexBinary(encryptedIVAndText);
 71		}
 72		catch(Exception e) { 73			 74		} 75		return null;
 76	}
 77
56    	try {
57    		jdbcTemplate.update("DELETE from session where sessCookie=?",cookieID);
58    		return true;
59    	}catch(Exception e) {60    		61    	}62    	return false;
63    }
64    public boolean deleteAllCookie() {