Skip to content

Commit dcd9a57

Browse files
author
Yoshito Umaoka
committed
Fixed ResourceTypeConverter visibility issue
ResourceTypeConverter was changed to package private at somepoint. But it needs to be public, because jcommander needs to access the class.
1 parent 2e9e087 commit dcd9a57

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gp-cli/src/main/java/com/ibm/g11n/pipeline/tools/cli/ResourceTypeConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright IBM Corp. 2015
2+
* Copyright IBM Corp. 2015, 2016
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@
2626
*
2727
* @author Yoshito Umaoka
2828
*/
29-
class ResourceTypeConverter implements IStringConverter<ResourceType>{
29+
public class ResourceTypeConverter implements IStringConverter<ResourceType>{
3030

3131
@Override
3232
public ResourceType convert(String type) {

0 commit comments

Comments
 (0)