clean up comments

pull/3838/head
Joseph Izang 1 year ago
parent 54648f9854
commit 52566eec9b
  1. 9
      apps/remix-ide/src/app/tabs/analysis-tab.js

@ -49,14 +49,6 @@ class AnalysisTab extends ViewPlugin {
this.event.register('staticAnaysisWarning', (count) => {
let payloadType = ''
// this.hints && this.hints.length > 0 ? this.hints.forEach(hint => {
// if (hint.type === 'error') {
// payloadType = 'error'
// } else if (hint.type === 'warning' && payloadType !== 'error') {
// payloadType = 'warning'
// }
// }) : payloadType = 'warning'
const error = this.hints.find(hint => hint.type === 'error')
const warning = this.hints.find(hints => hints.type === 'warning')
if (error) {
@ -66,7 +58,6 @@ class AnalysisTab extends ViewPlugin {
}
if (count > 0) {
// this.emit('statusChanged', { key: count, title: `${count} warning${count === 1 ? '' : 's'}`, type: payloadType })
this.emit('statusChanged', { key: count, title: payloadType === 'error' ? `You have some problem${count === 1 ? '' : 's'}` : 'You have some warnings', type: payloadType })
} else if (count === 0) {
this.emit('statusChanged', { key: 'succeed', title: 'no warnings or errors', type: 'success' })

Loading…
Cancel
Save