Ver código fonte

Merge "Fix compilation with Java 1.5"

tags/v1.1.0.201109011030-rc2
Matthias Sohn 13 anos atrás
pai
commit
5223cb6e5a

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPackInternalServerErrorException.java Ver arquivo

@@ -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);
}
}

Carregando…
Cancelar
Salvar