Skip to content

Commit 95036b5

Browse files
committed
update sources to 1.6
1 parent 9b01c80 commit 95036b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+73
-71
lines changed

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ mainClassName='test.Main'
66
apply plugin: 'maven'
77
apply plugin: 'signing'
88

9-
def group = "com.panayotis.javaplot"
10-
def archivesBaseName = "javaplot"
11-
def version = "0.5.0"
9+
group = "com.panayotis.javaplot"
10+
archivesBaseName = "javaplot"
11+
version = "0.5.0"
12+
13+
sourceCompatibility = 1.6
14+
targetCompatibility = 1.6
1215

1316
repositories {
1417
mavenCentral()

src/main/java/com/panayotis/gnuplot/GNUPlot.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on 12 Οκτώβριος 2007, 3:07 μμ
1717
*/
18-
1918
package com.panayotis.gnuplot;
2019

2120
import com.panayotis.gnuplot.layout.GraphLayout;

src/main/java/com/panayotis/gnuplot/GNUPlotException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on 12 Οκτώβριος 2007, 4:12 μμ
1717
*/
18-
1918
package com.panayotis.gnuplot;
2019

2120
/**

src/main/java/com/panayotis/gnuplot/GNUPlotExec.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on October 14, 2007, 1:42 PM
1717
*/
18-
1918
package com.panayotis.gnuplot;
2019

2120
import com.panayotis.gnuplot.terminal.GNUPlotTerminal;

src/main/java/com/panayotis/gnuplot/GNUPlotParameters.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on October 13, 2007, 4:02 PM
1717
*/
18-
1918
package com.panayotis.gnuplot;
2019

2120
import com.panayotis.gnuplot.layout.GraphLayout;

src/main/java/com/panayotis/gnuplot/JavaPlot.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on October 19, 2007, 1:11 AM
1717
*/
18-
1918
package com.panayotis.gnuplot;
2019

2120
import com.panayotis.gnuplot.dataset.DataSet;

src/main/java/com/panayotis/gnuplot/PropertiesHolder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on October 19, 2007, 2:20 AM
1717
*/
18-
1918
package com.panayotis.gnuplot;
2019

2120
import java.util.HashMap;

src/main/java/com/panayotis/gnuplot/dataset/ArrayDataSet.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on 15 Οκτώβριος 2007, 12:29 μμ
1717
*/
18-
1918
package com.panayotis.gnuplot.dataset;
2019

2120
import java.io.Serializable;
@@ -141,6 +140,7 @@ public ArrayDataSet(String[][] values) {
141140
*
142141
* @return the number of points
143142
*/
143+
@Override
144144
public int size() {
145145
return val.length;
146146
}
@@ -151,6 +151,7 @@ public int size() {
151151
* @return the number of dimensions
152152
* @see DataSet#getDimensions()
153153
*/
154+
@Override
154155
public int getDimensions() {
155156
if (val[0] == null)
156157
return -1;
@@ -165,6 +166,7 @@ public int getDimensions() {
165166
* @return the point data for this dimension
166167
* @see DataSet#getPointValue(int,int)
167168
*/
169+
@Override
168170
public String getPointValue(int point, int dimension) {
169171
return val[point][dimension];
170172
}

src/main/java/com/panayotis/gnuplot/dataset/DataSet.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on 15 Οκτώβριος 2007, 12:14 μμ
1717
*/
18-
1918
package com.panayotis.gnuplot.dataset;
2019

2120
/**

src/main/java/com/panayotis/gnuplot/dataset/FileDataSet.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*
1616
* Created on October 24, 2007, 2:00 AM
1717
*/
18-
1918
package com.panayotis.gnuplot.dataset;
2019

2120
import java.io.BufferedReader;

0 commit comments

Comments
 (0)