Home | History | Annotate | Download | only in plugins
      1 /*
      2  * Copyright (c) 2016 Mockito contributors
      3  * This program is made available under the terms of the MIT License.
      4  */
      5 package org.mockito.internal.configuration.plugins;
      6 
      7 import org.mockito.plugins.PluginSwitch;
      8 
      9 class DefaultPluginSwitch implements PluginSwitch {
     10     public boolean isEnabled(String pluginClassName) {
     11         return true;
     12     }
     13 }
     14