Procházet zdrojové kódy

Fix compilation with Java 1.5

Change-Id: I785f59fcf2018cd923d4d1617b923049dbde9809
tags/v1.1.0.201109011030-rc2
Carsten Pfeiffer před 13 roky
rodič
revize
46110935b5

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPackInternalServerErrorException.java Zobrazit soubor



import java.io.IOException; 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 { public class UploadPackInternalServerErrorException extends IOException {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;


* root cause. * root cause.
*/ */
public UploadPackInternalServerErrorException(Throwable why) { public UploadPackInternalServerErrorException(Throwable why) {
super(why);
initCause(why);
} }
} }

Načítá se…
Zrušit
Uložit