gplugin/gplugin

remove more unnecessary parens
feature/perl-loader
2015-03-02, Gary Kramlich
41cde363464a
Parents cf4dae2ec16f
Children f128b841978d
remove more unnecessary parens
--- a/perl/tests/plugins/dependent.pl Mon Mar 02 01:02:33 2015 -0600
+++ b/perl/tests/plugins/dependent.pl Mon Mar 02 01:02:47 2015 -0600
@@ -20,7 +20,7 @@
Glib::Object::Introspection->setup(basename => "GPlugin", version => "0.0", package=> "GPlugin");
-sub gplugin_query() {
+sub gplugin_query {
return GPlugin::PluginInfo->new(
id => "gplugin/perl-dependent-plugin",
abi_version => 0x01000001,
@@ -28,11 +28,11 @@
);
}
-sub gplugin_load() {
+sub gplugin_load {
return 0;
}
-sub gplugin_unload() {
+sub gplugin_unload {
return 0;
}