Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2011-12-20 18:07:54 +0000
committerSteffen Pingel2011-12-20 18:07:54 +0000
commit674f97e9d4fbb9e0e2735a53533ab8fe66d30344 (patch)
tree86af6f6595520d9a4c99f85e34ae9429c6d9b25d /org.eclipse.mylyn.github.core/src/org/eclipse
parent98ea512f8ca3b27237d9856e48d56585ac92767e (diff)
downloadegit-github-674f97e9d4fbb9e0e2735a53533ab8fe66d30344.tar.gz
egit-github-674f97e9d4fbb9e0e2735a53533ab8fe66d30344.tar.xz
egit-github-674f97e9d4fbb9e0e2735a53533ab8fe66d30344.zip
Replace usage of Java 6 API with Java 5 API
Diffstat (limited to 'org.eclipse.mylyn.github.core/src/org/eclipse')
-rw-r--r--org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/GitHubException.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/GitHubException.java b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/GitHubException.java
index 54952fd2..1c971af5 100644
--- a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/GitHubException.java
+++ b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/GitHubException.java
@@ -44,7 +44,8 @@ public class GitHubException extends IOException {
* @param cause
*/
public GitHubException(RequestException cause) {
- super(cause);
+ super();
+ initCause(cause);
}
public String getMessage() {

Back to the top