cleaned all trailing white space from source files.
[sdk] / samples / eC / FindPrime / findPrime.ec
index 493f84c..2cb9ec7 100644 (file)
@@ -8,7 +8,7 @@ public class FindPrime
    bool HasPrimeFactor(int x)
    {
       int max = (int)floor(sqrt((double)x));
-     
+
       for(i : primeList)
       {
          if(i > max) break;