1
0
Fork 0

Fixed error message, whitespace

master
Arno van Lumig 2015-02-06 11:41:34 +01:00
parent 3d62a9a273
commit 33164dd151
1 changed files with 3 additions and 3 deletions

View File

@ -575,7 +575,7 @@ public class Issue extends Resource {
}
}
/**
/**
* Adds a remote link to this issue.
*
* @param url Url of the remote link
@ -590,14 +590,14 @@ public class Issue extends Resource {
obj.put("url", url);
obj.put("title", title);
obj.put("summary", summary);
obj.put("summary", summary);
req.put("object", obj);
try {
restclient.post(getRestUri(key) + "/remotelink", req);
} catch (Exception ex) {
throw new JiraException("Failed add comment to issue " + key, ex);
throw new JiraException("Failed add remote link to issue " + key, ex);
}
}