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> {
render() {
console.log('loading');
return (
<div style={{ textAlign: 'center' }}>
<LoadingMessage color={this.props.color}>Loading ...</LoadingMessage>

View File

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