Re: [EGIT PATCH 2/8] Move AWTPlotRenderer to its own file.
From: Shawn O. Pearce <hidden>
Date: 2016-06-15 22:45:25
Robin Rosenberg [off-list ref] wrote:
quoted hunk ↗ jump to hunk
This is mostly a convenience issue as it allows the use of the JVM hotswap feature while debugging. Signed-off-by: Robin Rosenberg <redacted> --- .../org/spearce/jgit/awtui/AWTPlotRenderer.java | 104 ++++++++++++++++++++ .../org/spearce/jgit/awtui/CommitGraphPane.java | 92 ----------------- 2 files changed, 104 insertions(+), 92 deletions(-) create mode 100644 org.spearce.jgit/src/org/spearce/jgit/awtui/AWTPlotRenderer.javadiff --git a/org.spearce.jgit/src/org/spearce/jgit/awtui/AWTPlotRenderer.java b/org.spearce.jgit/src/org/spearce/jgit/awtui/AWTPlotRenderer.java new file mode 100644 index 0000000..a9933a4 --- /dev/null +++ b/org.spearce.jgit/src/org/spearce/jgit/awtui/AWTPlotRenderer.java@@ -0,0 +1,104 @@ +/** + * + */ +package org.spearce.jgit.awtui;
Missing copyright from the old sources. Please carry over the existing copyright header. -- Shawn.