From 2c6ade9c0d7fc0b7abd2269c7c8a7cb415cbecbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Mon, 11 Mar 2013 16:35:20 +0100 Subject: Algorithms-I : 3-Collinear: hide api --- Algorithms/Part-I/3-Collinear/Fast.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Algorithms/Part-I/3-Collinear/Fast.java b/Algorithms/Part-I/3-Collinear/Fast.java index 6d9dcac..07130a6 100644 --- a/Algorithms/Part-I/3-Collinear/Fast.java +++ b/Algorithms/Part-I/3-Collinear/Fast.java @@ -7,7 +7,7 @@ import java.util.Arrays; public class Fast { - static class Segment + private static class Segment { private Point[] pts; @@ -61,7 +61,7 @@ public class Fast } } - static List solve(Point[] pts, int N) + private static List solve(Point[] pts, int N) { List segments = new ArrayList(); for (int i = 0; i < N - 1; i++) -- cgit v1.1-2-g2b99