aboutsummaryrefslogtreecommitdiff
path: root/lib/Matrix
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@openmailbox.org>2018-06-03 11:00:42 -0300
committerMatias Linares <matiaslina@openmailbox.org>2018-06-03 11:00:42 -0300
commite31551dfe5d2af70add8ee5f5605f845e0dd6049 (patch)
treef170fec7eb65982996b7fd4ad111c138f311f83f /lib/Matrix
parent8e47054137db9fda75a9b102df397d1d7ec3d280 (diff)
downloadperl6-matrix-client-e31551dfe5d2af70add8ee5f5605f845e0dd6049.tar.gz
Remove gist method for now
Diffstat (limited to 'lib/Matrix')
-rw-r--r--lib/Matrix/Response.pm64
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 {