msftidy run

This commit is contained in:
James Lee 2011-11-20 11:39:27 +11:00
parent 9cbd759eab
commit 70b463b257
10 changed files with 39 additions and 39 deletions

View File

@ -71,7 +71,7 @@ class Socket
res = create_tcp_client_channel( params )
end
elsif( params.udp? )
res = create_udp_channel( params )
res = create_udp_channel( params )
end
return res

View File

@ -15,13 +15,13 @@ module EventLogSubsystem
###
class EventRecord
attr_reader :num, :generated, :written, :eventid,
:type, :category, :strings, :data
attr_reader :num, :generated, :written, :eventid
attr_reader :type, :category, :strings, :data
protected
attr_writer :num, :generated, :written, :eventid,
:type, :category, :strings, :data
attr_writer :num, :generated, :written, :eventid
attr_writer :type, :category, :strings, :data
public