Doodle3D / connman-api

Connman (Opensource connection manager) client
MIT License
9 stars 10 forks source link

Replace ['...'] syntax #1

Closed peteruithoven closed 9 years ago

peteruithoven commented 9 years ago

There are a couple of places where we use ['...'] for no good reason. Like:

svc.SetProperty['timeout'] = 10000;
svc.SetProperty['error'] = callback || null;
svc.SetProperty['finish'] = callback || null;

The recommended syntax is:

svc.SetProperty.timeout = 10000;
svc.SetProperty.error = callback || null;
svc.SetProperty.finish = callback || null;