You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building a JuiceSSH plugin, and like it says in the title, I get calls to OnSessionCancelled right after OnSessionStarted. looking at the file here I think line 286 is missing a break;?
I guess the reason this passed uncaught before is because in the example plugin and performance monitors use an empty OnSessionCancelled callback.
The text was updated successfully, but these errors were encountered:
fallthrough in switch statements is a cause of bugs!
**Fallthrough in 'switch' statement less... (⌘F1)**
Reports 'fall-through' in a switch statement. Fall-through is defined to occur when a
series of executable statements after a switch label is not guaranteed to transfer
control before the next switch label. In that case, control falls through to the
statements after that switch label, even though the switch expression does not equal the
value of the fallen-through label. While occasionally intended, this construction is
confusing, and is often the result of a typo.
Hi there,
I'm building a JuiceSSH plugin, and like it says in the title, I get calls to
OnSessionCancelled
right afterOnSessionStarted
. looking at the file here I think line 286 is missing abreak;
?I guess the reason this passed uncaught before is because in the example plugin and performance monitors use an empty
OnSessionCancelled
callback.The text was updated successfully, but these errors were encountered: