Removed dead code
This commit is contained in:
parent
2a5f9070e3
commit
82e4a85999
@ -12,8 +12,11 @@
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/sesim/AutoTraderLoader.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/traders/ManTrader/ManTrader.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/gui/NewMDIApplication.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/gui/AboutDialog.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/chart/FullChart.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/gui/EditAutoTraderList.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/nbproject/jnlp-impl.xml</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/README.md</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/gui/EditStrategies.java</file>
|
||||
<file>file:/home/tube/NetBeansProjects/SeSim/src/chart/Chart.java</file>
|
||||
</group>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#Sun, 26 Mar 2017 21:43:12 +0100
|
||||
#Mon, 27 Mar 2017 01:51:02 +0200
|
||||
annotation.processing.enabled=true
|
||||
annotation.processing.enabled.in.editor=false
|
||||
annotation.processing.processors.list=
|
||||
@ -7,6 +7,7 @@ annotation.processing.source.output=${build.generated.sources.dir}/ap-source-out
|
||||
ant.customtasks.libs=JWSAntTasks
|
||||
application.desc=SeSim - Stock Exchange Simulator
|
||||
application.homepage=blog.cauwersin.com
|
||||
application.splash=
|
||||
application.title=SeSim
|
||||
application.vendor=Cauwersin
|
||||
build.classes.dir=${build.dir}/classes
|
||||
|
@ -284,23 +284,9 @@ public class Chart extends javax.swing.JPanel implements QuoteReceiver, Scrollab
|
||||
}
|
||||
|
||||
|
||||
/* private void rawItem_l(RenderCtx ctx, int prevx, int x, OHLCDataItem prev, OHLCDataItem item) {
|
||||
|
||||
if (prev == null) {
|
||||
prev = item;
|
||||
}
|
||||
Graphics2D g = ctx.g;
|
||||
|
||||
Rectangle r = ctx.rect;
|
||||
g.drawLine(prevx, (int) ctx.getYc(prev.close), x, (int) ctx.getYc(item.close));
|
||||
g.drawLine(r.x, r.height + r.y, r.x + r.width, r.height + r.y);
|
||||
}
|
||||
*/
|
||||
|
||||
private void drawCandleItem(RenderCtx ctx, int prevx, int x, OHLCDataItem prev, OHLCDataItem i) {
|
||||
|
||||
if (prev == null) {
|
||||
prev = i;
|
||||
}
|
||||
Graphics2D g = ctx.g;
|
||||
|
||||
Rectangle r = ctx.rect;
|
||||
|
Loading…
Reference in New Issue
Block a user