mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
updated
This commit is contained in:
parent
127c51984e
commit
43b8670efe
@ -73,6 +73,7 @@ public class Field implements Comparable<Field> {
|
||||
}
|
||||
|
||||
private static String javaSafe(String name){
|
||||
// TODO : improve this
|
||||
if (name.equals("private")){
|
||||
return "prvate";
|
||||
}else if (name.equals("public")){
|
||||
@ -83,6 +84,7 @@ public class Field implements Comparable<Field> {
|
||||
}
|
||||
|
||||
private static String realName(String name){
|
||||
// TODO : improve this
|
||||
if (name.equals("prvate")){
|
||||
return "private";
|
||||
}else if (name.equals("pblic")){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user