Skip to content

Commit

Permalink
Remove spaces from CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
JaciBrunning committed Dec 29, 2015
1 parent adc9834 commit 18c78f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {
}

archivesBaseName = "BlackBox"
version = "0.0.1"
version = "0.1.0"
group = "jaci.openrio.modules"

gradlerio.team = "9999" //Your FRC team number (e.g. 5333 for team 'Can't C#', or 47 for Chief Delphi)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jaci/openrio/module/blackbox/BlackBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public String getModuleName() {

@Override
public String getModuleVersion() {
return "0.0.1";
return "0.1.0";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ public void tick() {
start_time = System.currentTimeMillis();
try {
file_out = new FileOutputStream(target_file);
file_out.write(String.join(", ", value_suppliers.keySet()).getBytes());
file_out.write(String.join(",", value_suppliers.keySet()).getBytes());
file_out.write('\n');
} catch (IOException e) { }
}

try {
file_out.write(String.join(", ", value_suppliers.values().stream()
file_out.write(String.join(",", value_suppliers.values().stream()
.map(num -> num.get().toString())
.collect(Collectors.toList())
).getBytes());
Expand Down

0 comments on commit 18c78f5

Please sign in to comment.