-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Variables with similar names - "Cannot find Symbol" for getter method #2590
Comments
I can confirm that lombok only generates one getter if there are two fields sharing the same name with different upper and lower case characters. It's quite funny that |
I think the root cause is here. It's because lombok checks getter names without case sensitivity. And also it shouldn't work for the eclipse compiler because it also has the same check... It was introduced here: |
Original issue: #148, https://groups.google.com/g/javaposse/c/4AzRsqJdzKM It seems like the reason for this behaviour is to handle cases where someone wants to add a method like Disclaimer: I'm not a project owner. |
Duplicate of #2130: We won't fix this, for reasons, see that issue. |
I believe I have encountered a bug where Lombok build fails when 2 variables with very similar names. In this example, the only difference is a single character capitalization.
`import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
@EqualsAndHashCode @tostring @Setter @builder
@NoArgsConstructor @AllArgsConstructor
public class History implements java.io.Serializable {
//UpperCase "I" in this variable name`
@Getter
private Integer histDeIdPtr;
//LowerCase "i" in this variable name`
@Getter
private Integer histDeidPtr;
}`
Building via Maven, this causes
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project lombok-pojos: Compilation failure: Compilation failure: [ERROR] /C:/git/lombok-pojos/src/main/java/org/test/lombok/pojos/History.java:[27,1] cannot find symbol [ERROR] symbol: method getHistDeIdPtr()
NOTES on my setup:
One workaround is to write my own getter/setter. But doing so would complicate the POJO generation templates, or require after-processing; both of which I would like to avoid.
If this is not a bug, is another workaround available?
The text was updated successfully, but these errors were encountered: