Skip to content

Commit

Permalink
Removed Sequence colourize
Browse files Browse the repository at this point in the history
  • Loading branch information
josip committed May 1, 2010
1 parent 4983fb8 commit 0d52b89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
5 changes: 2 additions & 3 deletions io/Namespaces.io
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Namespaces := Object clone do(
Namespaces foreachSlot(nsName, ns,
if(nsName == "type", continue)

(nsName colourize("cyan", "bold") .. ":") printlnColours
(nsName .. ":") println
prettyNsName := if(nsName == "Default", "", (nsName asMutable makeFirstCharacterLowercase) .. ":")
(nsName == "Options") ifTrue(prettyNsName = "-")

Expand All @@ -31,8 +31,7 @@ Namespaces := Object clone do(

nsSlots foreach(slot,
slotArgs := ns getSlot(slot) argumentNames map(arg, "<" .. arg ..">") join(" ")
slotC := slot colourize("cyan", "bold")
" #{slotC} #{slotArgs}" interpolate printlnColours
" #{slot} #{slotArgs}" interpolate println
ns getSlot(slot) description split("\n") map(line, " " .. line) join("\n") println
"" println)))

Expand Down
21 changes: 0 additions & 21 deletions io/Utilites.io

This file was deleted.

0 comments on commit 0d52b89

Please sign in to comment.