Remove not used WeightValidationHelper (#2916)
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -16,7 +16,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.ddi.DDIStart
|
||||
run org.eclipse.hawkbit.app.ddi.DdiStart
|
||||
```
|
||||
|
||||
### Usage
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<name>hawkBit :: DDI :: Server</name>
|
||||
|
||||
<properties>
|
||||
<spring.app.class>org.eclipse.hawkbit.app.ddi.DDIStart</spring.app.class>
|
||||
<spring.app.class>org.eclipse.hawkbit.app.ddi.DdiStart</spring.app.class>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -20,7 +20,7 @@ import org.springframework.web.servlet.view.RedirectView;
|
||||
* The minimal configuration for the stand alone hawkBit DDI server.
|
||||
*/
|
||||
@SpringBootApplication(scanBasePackages = "org.eclipse.hawkbit")
|
||||
public class DDIStart {
|
||||
public class DdiStart {
|
||||
|
||||
/**
|
||||
* Main method to start the spring-boot application.
|
||||
@@ -28,7 +28,7 @@ public class DDIStart {
|
||||
* @param args the VM arguments.
|
||||
*/
|
||||
public static void main(final String[] args) {
|
||||
SpringApplication.run(DDIStart.class, args);
|
||||
SpringApplication.run(DdiStart.class, args);
|
||||
}
|
||||
|
||||
@Controller
|
||||
Reference in New Issue
Block a user