From c3190de79ee2388f346a0d1cbff0bb595df68694 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Tue, 26 Jun 2012 08:29:07 +0200 Subject: [PATCH] fix unused command field --- .../sonia/scm/repository/api/CommandNotSupportedException.java | 1 + 1 file changed, 1 insertion(+) diff --git a/scm-core/src/main/java/sonia/scm/repository/api/CommandNotSupportedException.java b/scm-core/src/main/java/sonia/scm/repository/api/CommandNotSupportedException.java index ddf1cc7b21..3b51254659 100644 --- a/scm-core/src/main/java/sonia/scm/repository/api/CommandNotSupportedException.java +++ b/scm-core/src/main/java/sonia/scm/repository/api/CommandNotSupportedException.java @@ -71,6 +71,7 @@ public final class CommandNotSupportedException extends RuntimeException public CommandNotSupportedException(Command command, String message) { super(message); + this.command = command; } //~--- get methods ----------------------------------------------------------