diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2018-06-03 11:00:42 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2018-06-03 11:00:42 -0300 |
commit | e31551dfe5d2af70add8ee5f5605f845e0dd6049 (patch) | |
tree | f170fec7eb65982996b7fd4ad111c138f311f83f | |
parent | 8e47054137db9fda75a9b102df397d1d7ec3d280 (diff) | |
download | perl6-matrix-client-e31551dfe5d2af70add8ee5f5605f845e0dd6049.tar.gz |
Remove gist method for now
-rw-r--r-- | lib/Matrix/Response.pm6 | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Matrix/Response.pm6 b/lib/Matrix/Response.pm6 index 48fd66a..f51314b 100644 --- a/lib/Matrix/Response.pm6 +++ b/lib/Matrix/Response.pm6 @@ -5,10 +5,6 @@ unit module Matrix::Response; class Matrix::Response::Event { has %.content; has $.type is required; - - method gist(--> Str) { - "Event<$.type>" - } } class Matrix::Response::RoomEvent is Matrix::Response::Event { |