From commits-return-5504-archive-asf-public=cust-asf.ponee.io@royale.apache.org Thu Sep 6 10:46:34 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id EB613180668 for ; Thu, 6 Sep 2018 10:46:33 +0200 (CEST) Received: (qmail 95415 invoked by uid 500); 6 Sep 2018 08:46:32 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 95406 invoked by uid 99); 6 Sep 2018 08:46:32 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Sep 2018 08:46:32 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 4432C8531C; Thu, 6 Sep 2018 08:46:32 +0000 (UTC) Date: Thu, 06 Sep 2018 08:46:32 +0000 To: "commits@royale.apache.org" Subject: [royale-asjs] branch feature/MXRoyale updated: Revert ApplicationDomain.as MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153622359221.12243.13242505690762073513@gitbox.apache.org> From: alinakazi@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/feature/MXRoyale X-Git-Reftype: branch X-Git-Oldrev: c3a766aba300fc51a2a591639e3c5d3e17ff5f3f X-Git-Newrev: ec9619402096ee0faeb46f2705d1b6eca588de2f X-Git-Rev: ec9619402096ee0faeb46f2705d1b6eca588de2f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. alinakazi pushed a commit to branch feature/MXRoyale in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/feature/MXRoyale by this push: new ec96194 Revert ApplicationDomain.as ec96194 is described below commit ec9619402096ee0faeb46f2705d1b6eca588de2f Author: alinakazi AuthorDate: Thu Sep 6 13:46:30 2018 +0500 Revert ApplicationDomain.as --- .../src/main/royale/mx/system/ApplicationDomain.as | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/system/ApplicationDomain.as b/frameworks/projects/MXRoyale/src/main/royale/mx/system/ApplicationDomain.as index e5eb1f6..4c2fd1f 100644 --- a/frameworks/projects/MXRoyale/src/main/royale/mx/system/ApplicationDomain.as +++ b/frameworks/projects/MXRoyale/src/main/royale/mx/system/ApplicationDomain.as @@ -49,15 +49,21 @@ public class ApplicationDomain extends Object */ - public function ApplicationDomain() + public function ApplicationDomain() { super(); } - - public static function get currentDomain():ApplicationDomain - { - return null; - } + private var _currentDomain:Object; + + public function get currentDomain():Object + { + return _currentDomain; + } + + public function set currentDomain(obj:Object):void + { + _currentDomain = obj; + } }