src/main/java/org/apache/servicemix/store/ehcache/EhCacheStore.java [130:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try {
            Object result = null;
            Element element = cache.get(id);
            if (element != null) {
                byte[] data = (byte[]) (element.getValue());
                result = readObject(data);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/servicemix/store/ehcache/EhCacheStore.java [156:161]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try {
            Object result = null;
            Element element = cache.get(id);
            if (element != null) {
                byte[] data = (byte[]) (element.getValue());
                result = readObject(data);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



