From 76e2cccf18d9acf119c34968c6be52cc3afb0f84 Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" Date: Wed, 3 Oct 2018 01:16:19 +0200 Subject: [PATCH] jvppgen: update headers headers of generated files should correctly tell about where it cames from to not confuse readers. Change-Id: If667fa4aab188978156982adf3fa13474bd93e9e Signed-off-by: Bernhard M. Wiedemann --- extras/japi/java/jvpp/gen/jvppgen/callback_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/japi/java/jvpp/gen/jvppgen/callback_gen.py b/extras/japi/java/jvpp/gen/jvppgen/callback_gen.py index 14aa8b760a5..b1ad2013372 100755 --- a/extras/japi/java/jvpp/gen/jvppgen/callback_gen.py +++ b/extras/japi/java/jvpp/gen/jvppgen/callback_gen.py @@ -54,7 +54,7 @@ _CALLBACK_TEMPLATE = Template("""package $plugin_package.callback; /** *

Represents callback for plugin's api message. - *
It was generated by jvpp_callback_gen.py based on $json_filename. + *
It was generated by jvppgen/callback_gen.py based on $json_filename. */ public interface ${name}Callback extends io.fd.vpp.jvpp.callback.JVppCallback { @@ -66,7 +66,7 @@ _GLOBAL_CALLBACK_TEMPLATE = Template("""package $plugin_package.callback; /** *

Global aggregated callback interface. - *
It was generated by jvpp_callback_gen.py based on $json_filename. + *
It was generated by jvppgen/callback_gen.py based on $json_filename. */ public interface JVpp${plugin_name}GlobalCallback extends io.fd.vpp.jvpp.callback.ControlPingCallback, $callbacks { } -- 2.16.6