com.github.netkorp.overridebasiccommand.OverrideBasicCommandApplication   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 3
c 1
b 0
f 0
dl 0
loc 5
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A main(String[]) 0 2 1
1
package com.github.netkorp.overridebasiccommand;
2
3
import org.springframework.boot.SpringApplication;
4
import org.springframework.boot.autoconfigure.SpringBootApplication;
5
6
@SpringBootApplication
7
public class OverrideBasicCommandApplication {
8
9
    public static void main(String[] args) {
10
        SpringApplication.run(OverrideBasicCommandApplication.class, args);
11
    }
12
13
}
14