be consistent in style
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/060f9820 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/060f9820 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/060f9820 Branch: refs/heads/dual Commit: 060f9820f5c06a25dd1eeba139466f6d17841fee Parents: d8a5c63 Author: Justin Mclean <[email protected]> Authored: Mon Apr 17 09:40:24 2017 +1000 Committer: Justin Mclean <[email protected]> Committed: Mon Apr 17 09:40:24 2017 +1000 ---------------------------------------------------------------------- .../main/flex/org/apache/flex/net/beads/CORSCredentialsBead.as | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/060f9820/frameworks/projects/Network/src/main/flex/org/apache/flex/net/beads/CORSCredentialsBead.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/beads/CORSCredentialsBead.as b/frameworks/projects/Network/src/main/flex/org/apache/flex/net/beads/CORSCredentialsBead.as index be02408..08d5a3a 100644 --- a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/beads/CORSCredentialsBead.as +++ b/frameworks/projects/Network/src/main/flex/org/apache/flex/net/beads/CORSCredentialsBead.as @@ -85,13 +85,11 @@ public class CORSCredentialsBead implements IBead { * * @productversion FlexJS 0.8 */ - public function get withCredentials():Boolean - { + public function get withCredentials():Boolean { return _withCredentials; } - public function set withCredentials(value:Boolean):void - { + public function set withCredentials(value:Boolean):void { _withCredentials = value; } }
