Skip to content

Commit

Permalink
- stackoverflowerror 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
chanhyeong authored and wool0826 committed Apr 5, 2024
1 parent 5573219 commit 33b90a2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
* @author Myeonghyeon Lee
*/
public final class TbColumn {
private final AggregatePath pathExtension;

private final String path;
private final String column;
private final String alias;
Expand All @@ -38,8 +36,6 @@ public final class TbColumn {
* @param aggregatePath the aggregate path
*/
TbColumn(AggregatePath aggregatePath) {
this.pathExtension = aggregatePath;

this.path = aggregatePath.getRequiredPersistentPropertyPath().toDotPath();
this.column = aggregatePath.getColumnInfo().name().getReference();
this.alias = aggregatePath.getColumnInfo().alias().getReference();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
* @author Myeonghyeon Lee
*/
public final class TbInfo {
private final AggregatePath aggregatePath;

private final String path;
private final String table;
private final String alias;
Expand All @@ -38,8 +36,6 @@ public final class TbInfo {
* @param aggregatePath the path extension
*/
TbInfo(AggregatePath aggregatePath) {
this.aggregatePath = aggregatePath;

this.path = aggregatePath.getRequiredPersistentPropertyPath().toDotPath();
this.table = aggregatePath.getTableInfo().qualifiedTableName().getReference();
String aliasValue = this.table;
Expand Down

0 comments on commit 33b90a2

Please sign in to comment.