소스 검색

remove commented console.log

yakomaxa 2 년 전
부모
커밋
6ffdd81bb1
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/mol-model/structure/query/queries/atom-set.ts

+ 0 - 1
src/mol-model/structure/query/queries/atom-set.ts

@@ -32,7 +32,6 @@ export function propertySet(prop: QueryFn<any>) {
     return (ctx: QueryContext) => {
         const set = new Set();
         const x = getCurrentStructureProperties(ctx, prop, set);
-        //	console.log(x)
         return x;
     };
 }