import lombok.experimental.UtilityClass; | |
@UtilityClass | |
public class UtilityClassWithLombok { | |
private final int CONSTANT = 5; | |
public int addSomething(int in) { | |
return in + CONSTANT; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment