projects
/
lmno.games
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7cc3b5
)
Eliminate some debugging calls to console.log
author
Carl Worth
<cworth@cworth.org>
Mon, 29 Jun 2020 15:06:23 +0000
(08:06 -0700)
committer
Carl Worth
<cworth@cworth.org>
Mon, 29 Jun 2020 15:06:23 +0000
(08:06 -0700)
These were not meant to stick around.
empathy/empathy.jsx
patch
|
blob
|
history
diff --git
a/empathy/empathy.jsx
b/empathy/empathy.jsx
index feff7775a99f782188474bab923da9e1580b8327..5782b7879076bdd8812bccffc58a281b63760d5b 100644
(file)
--- a/
empathy/empathy.jsx
+++ b/
empathy/empathy.jsx
@@
-468,11
+468,9
@@
class Ambiguities extends React.PureComponent {
for (let word of props.words) {
const word_canon = canonize(word);
- console.log("Canonized " + word + " to " + word_canon);
let found_match = false;
for (let set of word_sets) {
const set_canon = canonize(set.values().next().value);
- console.log("Comparing " + word_canon + " to " + set_canon);
if (word_canon === set_canon) {
set.add(word);
found_match = true;;