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

Bugfix/fix typo in service name #54

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading