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

writeVauntFiles(String)   A

Complexity

Conditions 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 1
c 1
b 0
f 0
rs 10
cc 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