Skip to content

Commit

Permalink
removed jid.s shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
tong committed Apr 24, 2014
1 parent 7ec15be commit aa85882
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/jabber/JID.hx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ class JID {
/** Jid without resource */
public var bare(get,null) : String;

/** Just a shortcut for toString() */
public var s(get,null) : String;

public function new( ?t : String ) {
if( t != null ) {
if( !JIDUtil.isValid( t ) )
Expand All @@ -64,8 +61,6 @@ class JID {

function get_bare() : String return (node == null || domain == null) ? null : '$node@$domain';

inline function get_s() : String return toString();

public function clone() : JID {
var j = new JID();
j.node = node;
Expand Down

0 comments on commit aa85882

Please sign in to comment.