remove extra console.log-s

This commit is contained in:
Roman Hotsiy 2017-11-22 23:40:19 +02:00
parent cec37df7aa
commit 52e7bfb347
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0
2 changed files with 0 additions and 2 deletions

View File

@ -18,7 +18,6 @@ export interface LoadingProps {
export class Loading extends React.PureComponent<LoadingProps> { export class Loading extends React.PureComponent<LoadingProps> {
render() { render() {
console.log('loading');
return ( return (
<div style={{ textAlign: 'center' }}> <div style={{ textAlign: 'center' }}>
<LoadingMessage color={this.props.color}>Loading ...</LoadingMessage> <LoadingMessage color={this.props.color}>Loading ...</LoadingMessage>

View File

@ -110,7 +110,6 @@ export class OpenAPIParser {
resetVisited() { resetVisited() {
for (let k in this._refCounter._counter) { for (let k in this._refCounter._counter) {
if (this._refCounter._counter[k] > 0) { if (this._refCounter._counter[k] > 0) {
console.log('>>>', k, this._refCounter._counter[k]);
} }
} }
this._refCounter = new RefCounter(); this._refCounter = new RefCounter();