[Nice-commit] Nice/stdlib/nice/functional generator.nice,1.3,1.4
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-03-28 11:35:23
|
Update of /cvsroot/nice/Nice/stdlib/nice/functional In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1516/stdlib/nice/functional Modified Files: generator.nice Log Message: Enforce private visibility for methods (no restriction yet). Index: generator.nice =================================================================== RCS file: /cvsroot/nice/Nice/stdlib/nice/functional/generator.nice,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** generator.nice 19 Apr 2004 11:10:14 -0000 1.3 --- generator.nice 28 Mar 2005 11:35:14 -0000 1.4 *************** *** 555,559 **** * Is the number even? */ ! private boolean _even(int num) = num % 2 == 0; /** --- 555,559 ---- * Is the number even? */ ! boolean _even(int num) = num % 2 == 0; /** |