Skip to content

Commit

Permalink
#715: Update CHANGES.md for removed versions.h
Browse files Browse the repository at this point in the history
Also fix indentation in manifest_parser.c.
  • Loading branch information
pnoltes committed Feb 11, 2024
1 parent f0dc1c1 commit cc69c9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ limitations under the License.
- linked_list.h is removed and no longer supported. Use celix_array_list.h instead.
- ip_utils.h is removed and no longer supported.
- array_list.h is removed and no longer supported. Use celix_array_list.h instead.
- version.h and version_range.h are removed and no longer supported. Use celix_version.h and celix_version_range.h
instead.

## New Features

Expand Down
9 changes: 4 additions & 5 deletions libs/framework/src/manifest_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@
#include "celix_log.h"

struct manifestParser {
module_pt owner;
manifest_pt manifest;

celix_version_t* bundleVersion;
//TODO: Implement Requirement-Capability-Model using RCM library
module_pt owner;
manifest_pt manifest;
celix_version_t* bundleVersion;
// TODO: Implement Requirement-Capability-Model using RCM library
};

celix_status_t manifestParser_create(module_pt owner, manifest_pt manifest, manifest_parser_pt *manifest_parser) {
Expand Down

0 comments on commit cc69c9f

Please sign in to comment.