Explorar el Código

Tweak exception Javadoc to be eclipse-clean

Bug: 469887
Change-Id: Ic189efc50d9c1f573dda0c79e5b0dad0813a5577
Signed-off-by: Jonathan Nieder <jrn@google.com>
tags/v4.1.0.201509280440-r
Jonathan Nieder hace 9 años
padre
commit
3b7ca2b8a8

+ 1
- 0
org.eclipse.jgit/src/org/eclipse/jgit/errors/DiffInterruptedException.java Ver fichero

@@ -69,6 +69,7 @@ public class DiffInterruptedException extends RuntimeException {
super(message);
}

/** Indicates that the thread computing a diff was interrupted. */
public DiffInterruptedException() {
super();
}

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/ServiceNotAuthorizedException.java Ver fichero

@@ -50,7 +50,7 @@ import org.eclipse.jgit.internal.JGitText;
* the current user has not provided.
* <p>
* This corresponds to response code
* {@link javax.servlet.http.HttpServletResponse#SC_UNAUTHORIZED}.
* {@code HttpServletResponse.SC_UNAUTHORIZED}.
*/
public class ServiceNotAuthorizedException extends Exception {
private static final long serialVersionUID = 1L;
@@ -72,6 +72,7 @@ public class ServiceNotAuthorizedException extends Exception {
super(message);
}

/** Indicates that the requested service requires authentication. */
public ServiceNotAuthorizedException() {
super(JGitText.get().unauthorized);
}

Cargando…
Cancelar
Guardar