From 94f1cb2127b9cc630d0122b6fdc98066f364597c Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Mon, 25 Jun 2012 15:57:24 -0400 Subject: [PATCH] Avoid requiring the printer unneccesarily. --- collects/typed-racket/types/convenience.rkt | 2 +- collects/typed-racket/types/union.rkt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/typed-racket/types/convenience.rkt b/collects/typed-racket/types/convenience.rkt index 4a0a9198e4..c7912cc1ec 100644 --- a/collects/typed-racket/types/convenience.rkt +++ b/collects/typed-racket/types/convenience.rkt @@ -3,7 +3,7 @@ (rep type-rep filter-rep object-rep rep-utils) (utils tc-utils) "abbrev.rkt" "numeric-tower.rkt" (only-in racket/contract current-blame-format) - (types comparison printer union subtype utils substitute) + (types comparison union subtype utils substitute) racket/list racket/match (for-syntax syntax/parse racket/base) syntax/id-table racket/dict diff --git a/collects/typed-racket/types/union.rkt b/collects/typed-racket/types/union.rkt index 762fe4b950..1a19bc4642 100644 --- a/collects/typed-racket/types/union.rkt +++ b/collects/typed-racket/types/union.rkt @@ -4,7 +4,7 @@ (rep type-rep rep-utils) (utils tc-utils) (prefix-in c: (contract-req)) - (types utils subtype abbrev printer comparison) + (types utils subtype abbrev comparison) racket/match)