Skip to content

Commit 3a5895b

Browse files
committed
remove unused comment
1 parent f5a87c0 commit 3a5895b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/svelte/src/internal/client/runtime.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,13 +1061,11 @@ export function get(signal) {
10611061

10621062
if (active_effect !== null && (signal.f & DERIVED) === 0) {
10631063
if (active_fork) {
1064-
// console.log('get from fork', (signal.f & DERIVED) !== 0 ? 'derived' : 'source', signal.v);
10651064
return active_fork.get(signal);
10661065
}
10671066

10681067
var boundary = (active_effect.f & EFFECT) === 0 && active_effect.b;
10691068
if (boundary) {
1070-
// console.log('get from boundary', (signal.f & DERIVED) !== 0 ? 'derived' : 'source', signal.v);
10711069
return boundary.get(signal);
10721070
}
10731071
}

0 commit comments

Comments
 (0)