@@ -56,7 +56,7 @@ public MappingBinder getMappingBinder() {
56
56
* Create a {@linkplain Binding binding} from a named URL resource
57
57
*/
58
58
public Binding <JaxbBindableMappingDescriptor > bind (String resource ) {
59
- LOG .tracef ( "reading mappings from resource : %s" , resource );
59
+ LOG .tracef ( "Reading mappings from resource: %s" , resource );
60
60
final Origin origin = new Origin ( SourceType .RESOURCE , resource );
61
61
final URL url = classLoaderService .locateResource ( resource );
62
62
if ( url == null ) {
@@ -70,7 +70,7 @@ public Binding<JaxbBindableMappingDescriptor> bind(String resource) {
70
70
*/
71
71
public Binding <JaxbBindableMappingDescriptor > bind (File file ) {
72
72
final Origin origin = new Origin ( SourceType .FILE , file .getPath () );
73
- LOG .tracef ( "reading mappings from file : %s" , origin .getName () );
73
+ LOG .tracef ( "Reading mappings from file: %s" , origin .getName () );
74
74
if ( !file .exists () ) {
75
75
throw new MappingNotFoundException ( origin );
76
76
}
@@ -81,7 +81,7 @@ public Binding<JaxbBindableMappingDescriptor> bind(File file) {
81
81
* Create a {@linkplain Binding binding} from an input stream
82
82
*/
83
83
public Binding <JaxbBindableMappingDescriptor > bind (InputStreamAccess xmlInputStreamAccess ) {
84
- LOG .tracef ( "reading mappings from InputStreamAccess : %s" , xmlInputStreamAccess .getStreamName () );
84
+ LOG .tracef ( "Reading mappings from InputStreamAccess: %s" , xmlInputStreamAccess .getStreamName () );
85
85
final Origin origin = new Origin ( SourceType .INPUT_STREAM , xmlInputStreamAccess .getStreamName () );
86
86
final InputStream xmlInputStream = xmlInputStreamAccess .accessInputStream ();
87
87
try {
@@ -101,7 +101,7 @@ public Binding<JaxbBindableMappingDescriptor> bind(InputStreamAccess xmlInputStr
101
101
* Create a {@linkplain Binding binding} from an input stream
102
102
*/
103
103
public Binding <JaxbBindableMappingDescriptor > bind (InputStream xmlInputStream ) {
104
- LOG .trace ( "reading mappings from InputStream" );
104
+ LOG .trace ( "Reading mappings from InputStream" );
105
105
final Origin origin = new Origin ( SourceType .INPUT_STREAM , null );
106
106
return new InputStreamXmlSource ( origin , xmlInputStream , false ).doBind ( getMappingBinder () );
107
107
}
0 commit comments