Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Bugfix/fix typo in service name (#54)
Browse files Browse the repository at this point in the history
* Correct typo in class name

The class DevicePositiontIntegrationService has been renamed to DevicePositionIntegrationService to correct a typographical error. This change is purely cosmetic and does not affect the functionality of the class.

* Update version in pom.xml to 14.1.0

The version of the FIWARE integration layer in the pom.xml has been updated from 14.0.0 to 14.1.0, reflecting recent changes to the project. This update helps maintain accurate and up-to-date project versioning.
  • Loading branch information
saschadoemer authored Apr 23, 2024
1 parent bc92b98 commit 243a078
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.app.5gla</groupId>
<artifactId>fiware-integration-layer</artifactId>
<version>14.0.0</version>
<version>14.1.0</version>

<name>5gLa FIWARE integration layer</name>
<url>https://github.com/vitrum-connect/5gla-fiware-integration-layer</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* Integration service for FIWARE to send requests to the context broker.
*/
@Slf4j
public class DevicePositiontIntegrationService extends AbstractIntegrationService {
public class DevicePositionIntegrationService extends AbstractIntegrationService {

public DevicePositiontIntegrationService(String contextBrokerUrl, String tenant) {
public DevicePositionIntegrationService(String contextBrokerUrl, String tenant) {
super(contextBrokerUrl, tenant);
}

Expand Down

0 comments on commit 243a078

Please sign in to comment.