provi
/**
* Checks if a given file item is a mobile provision profile file.
- * @param item
* @return true, if it is a mobile provision profile file.
*/
public boolean isMobileProvisionProfileFile(FileItem item) {
@@ -161,7 +158,6 @@ public boolean isMobileProvisionProfileFile(FileItem item) {
/**
* If the fileName contains the uuid at the end, so remove the uuid part.
- * @param fileName
* @return fileName without uuid
*/
public static String removeUUIDFromFileName(String fileName) {
@@ -175,11 +171,10 @@ public static String removeUUIDFromFileName(String fileName) {
/**
* Get the filename of the provisioning profile in the shape of uuid.mobileprovision.
- * @param uuid
* @return filename
*/
public static String getUUIDFileName(String uuid) {
return String.format("%s%s", uuid, FILE_EXTENSION);
}
-}
\ No newline at end of file
+}
diff --git a/src/main/java/com/sic/plugins/kpp/provider/KPPProvisioningProfilesProvider.java b/src/main/java/com/sic/plugins/kpp/provider/KPPProvisioningProfilesProvider.java
index debe80c6..9c41dc8f 100644
--- a/src/main/java/com/sic/plugins/kpp/provider/KPPProvisioningProfilesProvider.java
+++ b/src/main/java/com/sic/plugins/kpp/provider/KPPProvisioningProfilesProvider.java
@@ -25,6 +25,8 @@
package com.sic.plugins.kpp.provider;
import static com.sic.plugins.kpp.provider.KPPBaseProvider.LOGGER;
+
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import hudson.Extension;
import hudson.ExtensionList;
import java.io.BufferedReader;
@@ -53,7 +55,6 @@ public static KPPProvisioningProfilesProvider getInstance() {
/**
* Get the file for a given provisioning profile file name.
- * @param fileName
* @return file
*/
public File getProvisioningFile(String fileName) {
@@ -67,6 +68,7 @@ public File getProvisioningFile(String fileName) {
* @param fileName name of the provisioning profile file
* @return UUID
*/
+ @SuppressFBWarnings(value = "DM_DEFAULT_ENCODING", justification = "Requires triage")
public static String parseUUIDFromProvisioningProfileFile(String fileName) {
String uuid = "UUID not found";
BufferedReader br = null;
diff --git a/src/main/resources/index.jelly b/src/main/resources/index.jelly
index ecc3ba74..4d150764 100644
--- a/src/main/resources/index.jelly
+++ b/src/main/resources/index.jelly
@@ -1,3 +1,4 @@
+
This plugin integrates management of keychain and provisioning files for iOS and OSX projects.
-
\ No newline at end of file
+