blob: 06fc5a45733dd9c55967244f1e5d2dbaa05bedd3 [file] [log] [blame]
package com.siyeh.ipp.conditional.withIf;
class Comment {
public String get() {
if (239 > 42) return "239";//comment
else return "42";//comment
}
}