@@ -314,7 +314,7 @@ private void handleBanMessages(StringBuilder newMsg) {
314
314
* @return The plugins which have been removed.
315
315
* @throws MojoExecutionException
316
316
*/
317
- public Set <Plugin > removeUncheckedPlugins (Collection <String > uncheckedPlugins , Set <Plugin > plugins )
317
+ Set <Plugin > removeUncheckedPlugins (Collection <String > uncheckedPlugins , Set <Plugin > plugins )
318
318
throws MojoExecutionException {
319
319
if (uncheckedPlugins != null && !uncheckedPlugins .isEmpty ()) {
320
320
for (String pluginKey : uncheckedPlugins ) {
@@ -328,8 +328,8 @@ public Set<Plugin> removeUncheckedPlugins(Collection<String> uncheckedPlugins, S
328
328
/**
329
329
* Combines the old Collection with the new comma separated list.
330
330
*
331
- * @param uncheckedPlugins
332
- * @param uncheckedPluginsList
331
+ * @param uncheckedPlugins a new collections
332
+ * @param uncheckedPluginsList a list to merge
333
333
* @return List of unchecked plugins.
334
334
*/
335
335
public Collection <String > combineUncheckedPlugins (
@@ -376,12 +376,12 @@ public Set<Plugin> addAdditionalPlugins(Set<Plugin> existing, List<String> addit
376
376
/**
377
377
* Helper method to parse and inject a Plugin.
378
378
*
379
- * @param pluginString
380
- * @param field
381
- * @return the plugin
382
- * @throws MojoExecutionException
379
+ * @param pluginString a plugin description to parse
380
+ * @param field a source of pluginString
381
+ * @return the prepared plugin
382
+ * @throws MojoExecutionException in case of problems
383
383
*/
384
- protected Plugin parsePluginString (String pluginString , String field ) throws MojoExecutionException {
384
+ private Plugin parsePluginString (String pluginString , String field ) throws MojoExecutionException {
385
385
if (pluginString != null ) {
386
386
String [] pluginStrings = pluginString .split (":" );
387
387
if (pluginStrings .length == 2 ) {
0 commit comments