Shorten JavaFileGeneratorFactory's name 42/97242/1
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 17 Aug 2021 21:04:09 +0000 (23:04 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 17 Aug 2021 21:05:08 +0000 (23:05 +0200)
The package name here is quite wasteful, hence use something shorter,
which should help with hitting file path limits.

Change-Id: Iade9a8e8a71a5cbfb0b7aef1de253e623c731920
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-java-api-generator/src/main/java/org/opendaylight/mdsal/binding/java/api/generator/JavaFileGeneratorFactory.java

index fd5b8dadb63c364b32b9c9b53798610194c1b32e..b5868eba0612b7065f222904bc94875cee5d6499 100644 (file)
@@ -15,7 +15,7 @@ import org.opendaylight.yangtools.plugin.generator.api.FileGeneratorFactory;
 @MetaInfServices(value = FileGeneratorFactory.class)
 public final class JavaFileGeneratorFactory extends AbstractFileGeneratorFactory {
     public JavaFileGeneratorFactory() {
-        super(JavaFileGenerator.class.getName());
+        super("BindingJavaFileGenerator");
     }
 
     @Override