mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
CommentManagerImpl
Variable values changed.
This commit is contained in:
parent
072d8b6455
commit
471e6e3b21
@ -141,7 +141,7 @@ public class CommentsManagerImpl implements CommentsManager {
|
||||
public Comment getComment(int commentId) throws CommentManagementException {
|
||||
|
||||
PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantId(true);
|
||||
Comment comment = null;
|
||||
Comment comment;
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Comment retrieval request is received for the comment id " + commentId);
|
||||
}
|
||||
@ -215,7 +215,7 @@ public class CommentsManagerImpl implements CommentsManager {
|
||||
@Override
|
||||
public int getRatedUser(String uuid) throws ApplicationManagementException {
|
||||
|
||||
int ratedUsers = 0;
|
||||
int ratedUsers;
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Get the rated users for the application release number" + uuid);
|
||||
}
|
||||
@ -234,7 +234,7 @@ public class CommentsManagerImpl implements CommentsManager {
|
||||
@Override
|
||||
public int getStars(String uuid) throws ApplicationManagementException {
|
||||
|
||||
int stars = 0;
|
||||
int stars;
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Get the average of rated stars for the application " + uuid);
|
||||
}
|
||||
@ -256,7 +256,7 @@ public class CommentsManagerImpl implements CommentsManager {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Stars are received for the application " + uuid);
|
||||
}
|
||||
int newStars = 0;
|
||||
int newStars;
|
||||
try {
|
||||
ConnectionManagerUtil.beginDBTransaction();
|
||||
int ratedUsers = commentDAO.getRatedUser(uuid);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user