Browse Source

removes console.log

Sebastian Bittrich 6 years ago
parent
commit
495de89dcf

+ 0 - 4
src/mol-model/structure/structure/accessible-surface-area.ts

@@ -250,12 +250,8 @@ namespace AccessibleSurfaceArea {
     function handleNonStandardCase(element: ElementSymbol): number {
         const radius = VdwRadius(element);
         let index = VdWLookup.indexOf(radius);
-        console.log(radius);
-        console.log(index);
-        console.log(VdWLookup);
         if (index === -1) {
             // add novel value to lookup array
-            console.log(`novel value ${radius} for ${element}`)
             index = VdWLookup.length;
             VdWLookup[index] = radius;
         }

+ 2 - 1
src/tests/browser/render-asa.ts

@@ -74,7 +74,8 @@ async function init(props = {}) {
         // '1acj'
         // '1pga'
         '1brr'
-        )
+        // '1hrc'
+    )
     const models = await getModels(cif)
     const structure = await getStructure(models[0])