Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
Signed-off-by: John Else <john.else@citrix.com>
  • Loading branch information
johnelse committed Nov 13, 2015
1 parent 3b66d55 commit 398b609
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions lib/osc_transport.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ module type TRANSPORT = sig
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
val return : 'a -> 'a t

val raise_exn : exn -> 'a t
end

type sockaddr
Expand Down
2 changes: 0 additions & 2 deletions lib/osc_transport.mli
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ module type TRANSPORT = sig
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
val return : 'a -> 'a t

val raise_exn : exn -> 'a t
end

type sockaddr
Expand Down
2 changes: 0 additions & 2 deletions lwt/osc_lwt.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ module Io = struct
let (>>=) = Lwt.(>>=)
let (>|=) = Lwt.(>|=)
let return x = Lwt.return x

let raise_exn = Lwt.fail
end

module UdpTransport = struct
Expand Down
2 changes: 0 additions & 2 deletions unix/osc_unix.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ module Io = struct
let (>>=) x f = f x
let (>|=) x f = f x
let return x = x

let raise_exn = raise
end

module UdpTransport = struct
Expand Down

0 comments on commit 398b609

Please sign in to comment.