This commit is contained in:
Marcin Grzejszczak
2016-12-06 08:50:08 +01:00
committed by Marcin Grzejszczak
parent 148dc4effc
commit 7558fb183e

View File

@@ -17,6 +17,7 @@
package org.springframework.cloud.contract.verifier.file
import groovy.transform.CompileStatic
import groovy.transform.ToString
import org.springframework.cloud.contract.spec.Contract
import java.nio.file.Path
@@ -28,6 +29,7 @@ import java.nio.file.Path
* @since 1.0.0
*/
@CompileStatic
@ToString
class ContractMetadata {
/**
* Path to the file
@@ -58,15 +60,4 @@ class ContractMetadata {
this.order = order
this.convertedContract = convertedContract
}
@Override
public String toString() {
return "ContractMetadata{" +
"fileName=" + path.fileName +
", ignored=" + ignored +
", groupSize=" + groupSize +
", order=" + order +
", convertedContract=" + convertedContract +
'}'
}
}