mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 12:33:07 +00:00
removed console.log statements
This commit is contained in:
1
src/app/core/cache/object-cache.service.ts
vendored
1
src/app/core/cache/object-cache.service.ts
vendored
@@ -135,7 +135,6 @@ export class ObjectCacheService {
|
|||||||
|
|
||||||
this.store.select(objectFromUuidSelector(uuid))
|
this.store.select(objectFromUuidSelector(uuid))
|
||||||
.take(1)
|
.take(1)
|
||||||
.do((entry: ObjectCacheEntry) => console.log(entry))
|
|
||||||
.subscribe((entry) => result = this.isValid(entry));
|
.subscribe((entry) => result = this.isValid(entry));
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
1
src/app/core/cache/response-cache.service.ts
vendored
1
src/app/core/cache/response-cache.service.ts
vendored
@@ -58,7 +58,6 @@ export class ResponseCacheService {
|
|||||||
|
|
||||||
this.store.select(entryFromKeySelector(key))
|
this.store.select(entryFromKeySelector(key))
|
||||||
.take(1)
|
.take(1)
|
||||||
.do((entry) => console.log('ResponseCacheEntry', entry))
|
|
||||||
.subscribe((entry) => {
|
.subscribe((entry) => {
|
||||||
result = this.isValid(entry);
|
result = this.isValid(entry);
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user