Skip to content
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

chore: cleanup unused code #494

Merged
merged 15 commits into from
Apr 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
.
  • Loading branch information
naorpeled committed Apr 8, 2023
commit aed88da49df94e0afcff5ac09c6ade6382d11270
4 changes: 2 additions & 2 deletions src/classes/Table/Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,8 @@ class Table<Name extends string, PartitionKey extends A.Key, SortKey extends A.K
}
let ExpressionAttributeValues: { [key: string]: any } = { ':pk': pk }
let KeyConditionExpression = '#pk = :pk'
let FilterExpression // init FilterExpression
let ProjectionExpression // init ProjectionExpression
let FilterExpression
let ProjectionExpression
let EntityProjections = {}
let TableProjections // FIXME: removed default

Expand Down