Remove not used WeightValidationHelper (#2916)
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -12,7 +12,7 @@ _(Note: you have to add the JDBC driver also to your class path if you intend to
|
||||
|
||||
Or:
|
||||
```bash
|
||||
run org.eclipse.hawkbit.app.dmf.DMFStart
|
||||
run org.eclipse.hawkbit.app.dmf.DmfStart
|
||||
```
|
||||
# Clustering (Experimental!!!)
|
||||
## Remote Events between micro-services
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<name>hawkBit :: DMF :: Server</name>
|
||||
|
||||
<properties>
|
||||
<spring.app.class>org.eclipse.hawkbit.app.ddi.DMFStart</spring.app.class>
|
||||
<spring.app.class>org.eclipse.hawkbit.app.ddi.DmfStart</spring.app.class>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -17,7 +17,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
* The minimal configuration for the stand alone hawkBit DMF server.
|
||||
*/
|
||||
@SpringBootApplication(scanBasePackages = "org.eclipse.hawkbit")
|
||||
public class DMFStart {
|
||||
public class DmfStart {
|
||||
|
||||
/**
|
||||
* Main method to start the spring-boot application.
|
||||
@@ -25,6 +25,6 @@ public class DMFStart {
|
||||
* @param args the VM arguments.
|
||||
*/
|
||||
public static void main(final String[] args) {
|
||||
SpringApplication.run(DMFStart.class, args);
|
||||
SpringApplication.run(DmfStart.class, args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user