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

[GCI-142] Fix various memory leaks. #3083

Merged
merged 1 commit into from
Dec 18, 2019
Merged

[GCI-142] Fix various memory leaks. #3083

merged 1 commit into from
Dec 18, 2019

Conversation

ribhavsharma
Copy link
Contributor

Description of what I changed

Deep-copied the Getters and Setters to fix 4 instances of the following issue.

Issue I worked on

Checklist: I completed these to help reviewers :)

  • My pull request only contains ONE single commit
    (the number above, next to the 'Commits' tab is 1).

    No? -> read here on how to squash multiple commits into one

  • My IDE is configured to follow the code style of this project.

    No? Unsure? -> configure your IDE, format the code and add the changes with git add . && git commit --amend

  • I have added tests to cover my changes. (If you refactored
    existing code that was well tested you do not have to add tests)

    No? -> write tests and add them to this commit git add . && git commit --amend

  • I ran mvn clean package right before creating this pull request and
    added all formatting changes to my commit.

    No? -> execute above command

  • All new and existing tests passed.

    No? -> figure out why and add the fix to your commit. It is your responsibility to make sure your code works.

  • My pull request is based on the latest changes of the master branch.

    No? Unsure? -> execute command git pull --rebase upstream master

@HerbertYiga
Copy link
Contributor

some this is breaking,check the CI logs

Copy link
Contributor

@prathamesh-mutkure prathamesh-mutkure left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hii @ribhavsharma as per the logs, the setters are causing the travis-ci build to fail, I think it's happening because you forgot to address the possibility of null values. Be sure to address those :)

@ribhavsharma
Copy link
Contributor Author

@dkayiwa could you please review this? The travis CI is showing errors in the pre-existing code,

Copy link
Contributor

@f4ww4z f4ww4z left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ribhavsharma You need to rename your commit message and this PR title based on what you are modifying, or the Sonar issue you're fixing.

}

public void setStartDate(Date startDate) {
this.startDate = startDate;
this.startDate = startDate != null ? new Date(startDate.getTime()) : null;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the difference between this and this.startDate = new Date(startDate.getTime()) ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hey @f4ww4z. The current code addresses the possibility of null values too.

@dkayiwa
Copy link
Member

dkayiwa commented Dec 14, 2019

Have you taken a look at the travis build failure?

@ribhavsharma
Copy link
Contributor Author

@dkayiwa Yes I did. There are errors in the pre-existing code.

@ribhavsharma ribhavsharma changed the title [GCI-142] Check bad code practices through Findbugs or Sonar and fix those issues- 2. [GCI-142] Fix various memory leaks. Dec 15, 2019
@suthagar23
Copy link
Member

Can you check the travis, it's about your code referring to CohortMembership.java:105

…those issues

null

GCI-142 minor fix

del xtra brace + deepcopy setters

GCI-142 fix travis
@ribhavsharma
Copy link
Contributor Author

@dkayiwa @suthagar23 Could you please review this?

@coveralls
Copy link

coveralls commented Dec 16, 2019

Coverage Status

Coverage increased (+0.003%) to 59.974% when pulling 73b051b on ribhavsharma:sonar-2 into 7ef7035 on openmrs:master.

Copy link
Member

@suthagar23 suthagar23 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@dkayiwa dkayiwa merged commit 627ffbf into openmrs:master Dec 18, 2019
prathamesh-mutkure pushed a commit to prathamesh-mutkure/openmrs-core that referenced this pull request Dec 25, 2019
…those issues (openmrs#3083)

null

GCI-142 minor fix

del xtra brace + deepcopy setters

GCI-142 fix travis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
7 participants