Skip to content

Commit

Permalink
Restructuring the project
Browse files Browse the repository at this point in the history
  • Loading branch information
miachm committed Feb 25, 2018
1 parent 733b1e6 commit fc4690e
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 63 deletions.
2 changes: 2 additions & 0 deletions .idea/SODS.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import java.util.List;
public class BasicUsage{
public static void main(String args[]){
try {
SpreadSheet spread = new SpreadSheet(new File("BasicExample.ods"));
SpreadSheet spread = new SpreadSheet(new File("resources/BasicExample.ods"));
System.out.println("Number of sheets: " + spread.getNumSheets());

List<Sheet> sheets = spread.getSheets();
Expand Down
File renamed without changes.
Binary file not shown.
30 changes: 0 additions & 30 deletions src/com/github/miachm/SODS/examples/BasicUsage.java

This file was deleted.

31 changes: 0 additions & 31 deletions src/com/github/miachm/SODS/examples/SaveOds.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void testGetSheetInt() throws Exception {

@Test
public void testLoad() throws Exception {
SpreadSheet spread = new SpreadSheet(new File("CAS.ods"));
SpreadSheet spread = new SpreadSheet(new File("resources/CAS.ods"));
assertEquals(spread.getNumSheets(),2);
Object[][] arr = spread.getSheet(0).getDataRange().getValues();
assertEquals(arr[0][0],"A");
Expand Down

0 comments on commit fc4690e

Please sign in to comment.