summaryrefslogtreecommitdiff
path: root/xgb.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-10 23:57:34 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-10 23:57:34 -0400
commit7df5ddac5097b1207570d2d1fa59fdaf7051800a (patch)
tree467794520328560d6160ac2ecbc19afd0107d324 /xgb.go
parent3db12a4549548416b141b2b29de42137a5b39aad (diff)
better docs
Diffstat (limited to 'xgb.go')
-rw-r--r--xgb.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/xgb.go b/xgb.go
index 75af854..50cfdba 100644
--- a/xgb.go
+++ b/xgb.go
@@ -118,7 +118,6 @@ func (c *Conn) Close() {
// Event is an interface that can contain any of the events returned by the
// server. Use a type assertion switch to extract the Event structs.
type Event interface {
- ImplementsEvent()
Bytes() []byte
String() string
}
@@ -141,7 +140,6 @@ var NewExtEventFuncs = make(map[string]map[int]NewEventFun)
// Error is an interface that can contain any of the errors returned by
// the server. Use a type assertion switch to extract the Error structs.
type Error interface {
- ImplementsError()
SequenceId() uint16
BadId() uint32
Error() string