diff options
| -rw-r--r-- | src/cuchaz/enigma/gui/Gui.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/gui/Gui.java b/src/cuchaz/enigma/gui/Gui.java index ea05d255..27b06f97 100644 --- a/src/cuchaz/enigma/gui/Gui.java +++ b/src/cuchaz/enigma/gui/Gui.java | |||
| @@ -839,7 +839,9 @@ public class Gui { | |||
| 839 | 839 | ||
| 840 | private void showConstructorEntry(ConstructorEntry entry) { | 840 | private void showConstructorEntry(ConstructorEntry entry) { |
| 841 | addNameValue(m_infoPanel, "Constructor", entry.getClassEntry().getName()); | 841 | addNameValue(m_infoPanel, "Constructor", entry.getClassEntry().getName()); |
| 842 | addNameValue(m_infoPanel, "Signature", entry.getSignature().toString()); | 842 | if (!entry.isStatic()) { |
| 843 | addNameValue(m_infoPanel, "Signature", entry.getSignature().toString()); | ||
| 844 | } | ||
| 843 | } | 845 | } |
| 844 | 846 | ||
| 845 | private void showArgumentEntry(ArgumentEntry entry) { | 847 | private void showArgumentEntry(ArgumentEntry entry) { |