Adapt to enabling the MutableGuiceModule errorprone pattern in Gerrit core

This adapts to I35f1a7855eb1a2f09b2ba8f9de475ff1f51a7924 in Gerrit core.

Change-Id: I91b8ef54c4d840567541bb259c7775b019aec8e2
diff --git a/src/main/java/com/googlesource/gerrit/plugins/readonly/SshModule.java b/src/main/java/com/googlesource/gerrit/plugins/readonly/SshModule.java
index 357c2f7..c8cd06d 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/readonly/SshModule.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/readonly/SshModule.java
@@ -14,11 +14,18 @@
 
 package com.googlesource.gerrit.plugins.readonly;
 
+import com.google.gerrit.extensions.annotations.PluginName;
 import com.google.gerrit.extensions.registration.DynamicItem;
 import com.google.gerrit.sshd.PluginCommandModule;
 import com.google.gerrit.sshd.SshCreateCommandInterceptor;
+import com.google.inject.Inject;
 
 public class SshModule extends PluginCommandModule {
+  @Inject
+  SshModule(@PluginName String pluginName) {
+    super(pluginName);
+  }
+
   @Override
   protected void configureCommands() {
     DynamicItem.bind(binder(), SshCreateCommandInterceptor.class)