Skip to content

use comparator operator, not 'is' operator

Micheal Erickson requested to merge github/fork/MikeSE314/master into master

Got a warning, tested this out. Should be using ==, not is. The is checks if two instances are the same instance. The == checks if two values are the same, which is usually what you want.

Merge request reports