Quellcode durchsuchen

Fix compilation with Java 1.5

Change-Id: I785f59fcf2018cd923d4d1617b923049dbde9809
tags/v1.1.0.201109011030-rc2
Carsten Pfeiffer vor 13 Jahren
Ursprung
Commit
46110935b5

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPackInternalServerErrorException.java Datei anzeigen

@@ -45,7 +45,7 @@ package org.eclipse.jgit.transport;

import java.io.IOException;

/** UploadPack has already reported an error to the client. */
/** UploadPack has already reported an error to the client.*/
public class UploadPackInternalServerErrorException extends IOException {
private static final long serialVersionUID = 1L;

@@ -56,6 +56,6 @@ public class UploadPackInternalServerErrorException extends IOException {
* root cause.
*/
public UploadPackInternalServerErrorException(Throwable why) {
super(why);
initCause(why);
}
}

Laden…
Abbrechen
Speichern