Passed
Pull Request — master (#24)
by Filip
02:53
created

com.hltech.vaunt.generator.VauntGenerator   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A writeVauntFiles(String) 0 1 1
1
package com.hltech.vaunt.generator;
2
3
import javax.validation.constraints.NotNull;
4
5
public class VauntGenerator {
6
7
    public void writeVauntFiles(@NotNull String packageRoot) {
8
        // TODO: implement
9
    }
10
}
11