We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 628167b commit be2f54fCopy full SHA for be2f54f
1 file changed
apps/commerce-api/src/main/java/com/loopers/application/point/PointFacade.java
@@ -22,11 +22,6 @@ public Point getPoint(String userId) {
22
return pointService.getPoint(userId);
23
}
24
25
- @Transactional(readOnly = true)
26
- public Long getPointAmount(String userId) {
27
- return pointService.getPointAmount(userId);
28
- }
29
-
30
@Transactional
31
public void chargePoint(String userId, Long amount) {
32
pointService.chargePoint(userId, amount);
0 commit comments