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

Fix bug deprecation message retrieval #43920

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Dilhasha
Copy link
Contributor

@Dilhasha Dilhasha commented Mar 14, 2025

Purpose

Fix issue in deprecation message retrieval.

Approach

Describe how you are implementing the solutions along with the design details.

Samples

Provide high-level details about the samples related to this feature.

Remarks

List any other known issues, related PRs, TODO items, or any other notes related to the PR.

Check List

  • Read the Contributing Guide
  • Updated Change Log
  • Checked Tooling Support (#)
  • Added necessary tests
    • Unit Tests
    • Spec Conformance Tests
    • Integration Tests
    • Ballerina By Example Tests
  • Increased Test Coverage
  • Added necessary documentation
    • API documentation
    • Module documentation in Module.md files
    • Ballerina By Examples

@Dilhasha Dilhasha changed the title Fix deprecation message retrieval Fix bug deprecation message retrieval Mar 14, 2025
Copy link

codecov bot commented Mar 14, 2025

Codecov Report

Attention: Patch coverage is 0% with 3 lines in your changes missing coverage. Please review.

Project coverage is 75.05%. Comparing base (006eb9d) to head (cd53af1).
Report is 60 commits behind head on master.

Files with missing lines Patch % Lines
...java/io/ballerina/projects/internal/BalaFiles.java 0.00% 3 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##             master   #43920      +/-   ##
============================================
- Coverage     75.06%   75.05%   -0.01%     
+ Complexity    57516    57508       -8     
============================================
  Files          3540     3540              
  Lines        222373   222375       +2     
  Branches      28835    28836       +1     
============================================
- Hits         166922   166905      -17     
- Misses        46184    46204      +20     
+ Partials       9267     9266       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@@ -357,7 +357,11 @@ private static String getDeprecationMsg(Path balaPath) {
throw new ProjectException("unable to read content from the file '" + DEPRECATED_META_FILE_NAME +
"'", e);
}
return fileContents.substring(0, fileContents.length() - 1);
if (!fileContents.isEmpty()) {
Copy link
Contributor

Choose a reason for hiding this comment

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

if (fileContents.isEmpty()) {
    return "";
} 
return fileContents.substring(0, fileContents.length() - 1);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants