Skip to content

Commit 545c6ed

Browse files
author
Josh Milthorpe
committed
remove commented code
1 parent cfcc3ec commit 545c6ed

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

apgas.scala.examples/src/apgas/scala/examples/HelloWorld.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ object HelloWorld {
2222

2323
// PS: I need this because java is not the default on my system..
2424
System.setProperty(Configuration.APGAS_JAVA, "java8")
25-
26-
// PS: An alternate way would be to invoke 'scala' instead of Java.
27-
//System.setProperty("java.class.path", System.getProperty("java.class.path", "") + ":" +
28-
// "/home/psuter/software/scala/current/lib/scala-library.jar")
2925

3026
apgas {
3127
finish {

apgas.scala.examples/src/apgas/scala/examples/ResilientHelloWorld.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ object ResilientHelloWorld {
3030
// PS: I need this because java is not the default on my system..
3131
System.setProperty(Configuration.APGAS_JAVA, "java8")
3232

33-
// PS: An alternate way would be to invoke 'scala' instead of Java.
34-
//System.setProperty("java.class.path", System.getProperty("java.class.path", "") + ":" +
35-
// "/home/psuter/software/scala/current/lib/scala-library.jar")
36-
3733
apgas {
3834
var i: Int = 0
3935
while (true) {

apgas.scala.examples/src/apgas/scala/examples/kmeans/ResilientKMeans.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ object ResilientKMeans {
192192
// regenerate or redistribute points
193193
for (place <- oldPlaces) {
194194
if (survivorList.contains(place)) {
195-
//println(place + " survived. Regenerating points.")
196195
asyncAt(place) {
197196
val pointsHere = points()
198197
synchronized { pointsHere.++=(pointsForPlace(here.id)) }

0 commit comments

Comments
 (0)