Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
5d2a460f
Commit
5d2a460f
authored
Feb 02, 2017
by
Chris Bracken
Committed by
GitHub
Feb 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct capitalisation of Xcode (#7796)
Ref:
https://developer.apple.com/xcode/
parent
18fcb91e
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
28 additions
and
28 deletions
+28
-28
executable.dart
packages/flutter_tools/lib/executable.dart
+1
-1
run.dart
packages/flutter_tools/lib/src/commands/run.dart
+1
-1
devices.dart
packages/flutter_tools/lib/src/ios/devices.dart
+1
-1
ios_workflow.dart
packages/flutter_tools/lib/src/ios/ios_workflow.dart
+6
-6
mac.dart
packages/flutter_tools/lib/src/ios/mac.dart
+5
-5
simulators.dart
packages/flutter_tools/lib/src/ios/simulators.dart
+1
-1
daemon_test.dart
packages/flutter_tools/test/daemon_test.dart
+1
-1
context.dart
packages/flutter_tools/test/src/context.dart
+1
-1
ios_workflow_test.dart
packages/flutter_tools/test/src/ios/ios_workflow_test.dart
+11
-11
No files found.
packages/flutter_tools/lib/executable.dart
View file @
5d2a460f
...
@@ -115,7 +115,7 @@ Future<Null> main(List<String> args) async {
...
@@ -115,7 +115,7 @@ Future<Null> main(List<String> args) async {
context
.
putIfAbsent
(
ToolConfiguration
,
()
=>
new
ToolConfiguration
());
context
.
putIfAbsent
(
ToolConfiguration
,
()
=>
new
ToolConfiguration
());
context
.
putIfAbsent
(
Config
,
()
=>
new
Config
());
context
.
putIfAbsent
(
Config
,
()
=>
new
Config
());
context
.
putIfAbsent
(
OperatingSystemUtils
,
()
=>
new
OperatingSystemUtils
());
context
.
putIfAbsent
(
OperatingSystemUtils
,
()
=>
new
OperatingSystemUtils
());
context
.
putIfAbsent
(
X
Code
,
()
=>
new
XC
ode
());
context
.
putIfAbsent
(
X
code
,
()
=>
new
Xc
ode
());
context
.
putIfAbsent
(
IOSSimulatorUtils
,
()
=>
new
IOSSimulatorUtils
());
context
.
putIfAbsent
(
IOSSimulatorUtils
,
()
=>
new
IOSSimulatorUtils
());
context
.
putIfAbsent
(
SimControl
,
()
=>
new
SimControl
());
context
.
putIfAbsent
(
SimControl
,
()
=>
new
SimControl
());
context
.
putIfAbsent
(
Usage
,
()
=>
new
Usage
());
context
.
putIfAbsent
(
Usage
,
()
=>
new
Usage
());
...
...
packages/flutter_tools/lib/src/commands/run.dart
View file @
5d2a460f
...
@@ -156,7 +156,7 @@ class RunCommand extends RunCommandBase {
...
@@ -156,7 +156,7 @@ class RunCommand extends RunCommandBase {
void
printNoConnectedDevices
()
{
void
printNoConnectedDevices
()
{
super
.
printNoConnectedDevices
();
super
.
printNoConnectedDevices
();
if
(
getCurrentHostPlatform
()
==
HostPlatform
.
darwin_x64
&&
if
(
getCurrentHostPlatform
()
==
HostPlatform
.
darwin_x64
&&
X
C
ode
.
instance
.
isInstalledAndMeetsVersionCheck
)
{
X
c
ode
.
instance
.
isInstalledAndMeetsVersionCheck
)
{
printStatus
(
''
);
printStatus
(
''
);
printStatus
(
'To run on a simulator, launch it first: open -a Simulator.app'
);
printStatus
(
'To run on a simulator, launch it first: open -a Simulator.app'
);
printStatus
(
''
);
printStatus
(
''
);
...
...
packages/flutter_tools/lib/src/ios/devices.dart
View file @
5d2a460f
...
@@ -299,7 +299,7 @@ class IOSDevice extends Device {
...
@@ -299,7 +299,7 @@ class IOSDevice extends Device {
if
(
installationResult
!=
0
)
{
if
(
installationResult
!=
0
)
{
printError
(
'Could not install
${bundle.path}
on
$id
.'
);
printError
(
'Could not install
${bundle.path}
on
$id
.'
);
printError
(
'Try launching X
C
ode and selecting "Product > Run" to fix the problem:'
);
printError
(
'Try launching X
c
ode and selecting "Product > Run" to fix the problem:'
);
printError
(
' open ios/Runner.xcodeproj'
);
printError
(
' open ios/Runner.xcodeproj'
);
printError
(
''
);
printError
(
''
);
return
new
LaunchResult
.
failed
();
return
new
LaunchResult
.
failed
();
...
...
packages/flutter_tools/lib/src/ios/ios_workflow.dart
View file @
5d2a460f
...
@@ -13,7 +13,7 @@ import '../base/process.dart';
...
@@ -13,7 +13,7 @@ import '../base/process.dart';
import
'../doctor.dart'
;
import
'../doctor.dart'
;
import
'mac.dart'
;
import
'mac.dart'
;
X
Code
get
xcode
=>
XC
ode
.
instance
;
X
code
get
xcode
=>
Xc
ode
.
instance
;
class
IOSWorkflow
extends
DoctorValidator
implements
Workflow
{
class
IOSWorkflow
extends
DoctorValidator
implements
Workflow
{
IOSWorkflow
()
:
super
(
'iOS toolchain - develop for iOS devices'
);
IOSWorkflow
()
:
super
(
'iOS toolchain - develop for iOS devices'
);
...
@@ -61,7 +61,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
...
@@ -61,7 +61,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
if
(
xcode
.
isInstalled
)
{
if
(
xcode
.
isInstalled
)
{
xcodeStatus
=
ValidationType
.
installed
;
xcodeStatus
=
ValidationType
.
installed
;
messages
.
add
(
new
ValidationMessage
(
'X
C
ode at
${xcode.xcodeSelectPath}
'
));
messages
.
add
(
new
ValidationMessage
(
'X
c
ode at
${xcode.xcodeSelectPath}
'
));
xcodeVersionInfo
=
xcode
.
xcodeVersionText
;
xcodeVersionInfo
=
xcode
.
xcodeVersionText
;
if
(
xcodeVersionInfo
.
contains
(
','
))
if
(
xcodeVersionInfo
.
contains
(
','
))
...
@@ -71,7 +71,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
...
@@ -71,7 +71,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
if
(!
xcode
.
isInstalledAndMeetsVersionCheck
)
{
if
(!
xcode
.
isInstalledAndMeetsVersionCheck
)
{
xcodeStatus
=
ValidationType
.
partial
;
xcodeStatus
=
ValidationType
.
partial
;
messages
.
add
(
new
ValidationMessage
.
error
(
messages
.
add
(
new
ValidationMessage
.
error
(
'Flutter requires a minimum X
C
ode version of
$kXcodeRequiredVersionMajor
.
$kXcodeRequiredVersionMinor
.0.
\n
'
'Flutter requires a minimum X
c
ode version of
$kXcodeRequiredVersionMajor
.
$kXcodeRequiredVersionMinor
.0.
\n
'
'Download the latest version or update via the Mac App Store.'
'Download the latest version or update via the Mac App Store.'
));
));
}
}
...
@@ -79,13 +79,13 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
...
@@ -79,13 +79,13 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
if
(!
xcode
.
eulaSigned
)
{
if
(!
xcode
.
eulaSigned
)
{
xcodeStatus
=
ValidationType
.
partial
;
xcodeStatus
=
ValidationType
.
partial
;
messages
.
add
(
new
ValidationMessage
.
error
(
messages
.
add
(
new
ValidationMessage
.
error
(
'X
Code end user license agreement not signed; open XC
ode or run the command
\'
sudo xcodebuild -license
\'
.'
'X
code end user license agreement not signed; open Xc
ode or run the command
\'
sudo xcodebuild -license
\'
.'
));
));
}
}
}
else
{
}
else
{
xcodeStatus
=
ValidationType
.
missing
;
xcodeStatus
=
ValidationType
.
missing
;
messages
.
add
(
new
ValidationMessage
.
error
(
messages
.
add
(
new
ValidationMessage
.
error
(
'X
C
ode not installed; this is necessary for iOS development.
\n
'
'X
c
ode not installed; this is necessary for iOS development.
\n
'
'Download at https://developer.apple.com/xcode/download/.'
'Download at https://developer.apple.com/xcode/download/.'
));
));
}
}
...
@@ -119,7 +119,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
...
@@ -119,7 +119,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
if
(
result
.
exitCode
==
0
&&
result
.
stdout
.
isNotEmpty
&&
!
exitsHappy
(<
String
>[
'ideviceName'
]))
{
if
(
result
.
exitCode
==
0
&&
result
.
stdout
.
isNotEmpty
&&
!
exitsHappy
(<
String
>[
'ideviceName'
]))
{
brewStatus
=
ValidationType
.
partial
;
brewStatus
=
ValidationType
.
partial
;
messages
.
add
(
new
ValidationMessage
.
error
(
messages
.
add
(
new
ValidationMessage
.
error
(
'libimobiledevice is incompatible with the installed X
C
ode version. To update, run:
\n
'
'libimobiledevice is incompatible with the installed X
c
ode version. To update, run:
\n
'
'brew uninstall libimobiledevice
\n
'
'brew uninstall libimobiledevice
\n
'
'brew install --HEAD libimobiledevice'
'brew install --HEAD libimobiledevice'
));
));
...
...
packages/flutter_tools/lib/src/ios/mac.dart
View file @
5d2a460f
...
@@ -23,8 +23,8 @@ import 'xcodeproj.dart';
...
@@ -23,8 +23,8 @@ import 'xcodeproj.dart';
const
int
kXcodeRequiredVersionMajor
=
7
;
const
int
kXcodeRequiredVersionMajor
=
7
;
const
int
kXcodeRequiredVersionMinor
=
0
;
const
int
kXcodeRequiredVersionMinor
=
0
;
class
X
C
ode
{
class
X
c
ode
{
X
C
ode
()
{
X
c
ode
()
{
_eulaSigned
=
false
;
_eulaSigned
=
false
;
try
{
try
{
...
@@ -58,8 +58,8 @@ class XCode {
...
@@ -58,8 +58,8 @@ class XCode {
}
}
}
}
/// Returns [X
C
ode] active in the current app context.
/// Returns [X
c
ode] active in the current app context.
static
X
Code
get
instance
=>
context
[
XC
ode
];
static
X
code
get
instance
=>
context
[
Xc
ode
];
bool
get
isInstalledAndMeetsVersionCheck
=>
isInstalled
&&
xcodeVersionSatisfactory
;
bool
get
isInstalledAndMeetsVersionCheck
=>
isInstalled
&&
xcodeVersionSatisfactory
;
...
@@ -202,7 +202,7 @@ void diagnoseXcodeBuildFailure(XcodeBuildResult result) {
...
@@ -202,7 +202,7 @@ void diagnoseXcodeBuildFailure(XcodeBuildResult result) {
printError
(
'
${plistFile.absolute.path}
'
);
printError
(
'
${plistFile.absolute.path}
'
);
printError
(
''
);
printError
(
''
);
}
}
printError
(
"Try launching X
C
ode and selecting 'Product > Build' to fix the problem:"
);
printError
(
"Try launching X
c
ode and selecting 'Product > Build' to fix the problem:"
);
printError
(
" open ios/Runner.xcodeproj"
);
printError
(
" open ios/Runner.xcodeproj"
);
return
;
return
;
}
}
...
...
packages/flutter_tools/lib/src/ios/simulators.dart
View file @
5d2a460f
...
@@ -43,7 +43,7 @@ class IOSSimulatorUtils {
...
@@ -43,7 +43,7 @@ class IOSSimulatorUtils {
static
IOSSimulatorUtils
get
instance
=>
context
[
IOSSimulatorUtils
];
static
IOSSimulatorUtils
get
instance
=>
context
[
IOSSimulatorUtils
];
List
<
IOSSimulator
>
getAttachedDevices
()
{
List
<
IOSSimulator
>
getAttachedDevices
()
{
if
(!
X
C
ode
.
instance
.
isInstalledAndMeetsVersionCheck
)
if
(!
X
c
ode
.
instance
.
isInstalledAndMeetsVersionCheck
)
return
<
IOSSimulator
>[];
return
<
IOSSimulator
>[];
return
SimControl
.
instance
.
getConnectedDevices
().
map
((
SimDevice
device
)
{
return
SimControl
.
instance
.
getConnectedDevices
().
map
((
SimDevice
device
)
{
...
...
packages/flutter_tools/test/daemon_test.dart
View file @
5d2a460f
...
@@ -36,7 +36,7 @@ void main() {
...
@@ -36,7 +36,7 @@ void main() {
appContext
.
setVariable
(
Logger
,
notifyingLogger
);
appContext
.
setVariable
(
Logger
,
notifyingLogger
);
appContext
.
setVariable
(
Doctor
,
new
Doctor
());
appContext
.
setVariable
(
Doctor
,
new
Doctor
());
if
(
platform
.
isMacOS
)
if
(
platform
.
isMacOS
)
appContext
.
setVariable
(
X
Code
,
new
XC
ode
());
appContext
.
setVariable
(
X
code
,
new
Xc
ode
());
appContext
.
setVariable
(
DeviceManager
,
new
MockDeviceManager
());
appContext
.
setVariable
(
DeviceManager
,
new
MockDeviceManager
());
});
});
...
...
packages/flutter_tools/test/src/context.dart
View file @
5d2a460f
...
@@ -60,7 +60,7 @@ void testUsingContext(String description, dynamic testMethod(), {
...
@@ -60,7 +60,7 @@ void testUsingContext(String description, dynamic testMethod(), {
when
(
os
.
isWindows
).
thenReturn
(
false
);
when
(
os
.
isWindows
).
thenReturn
(
false
);
return
os
;
return
os
;
});
});
testContext
.
putIfAbsent
(
X
Code
,
()
=>
new
XC
ode
());
testContext
.
putIfAbsent
(
X
code
,
()
=>
new
Xc
ode
());
testContext
.
putIfAbsent
(
IOSSimulatorUtils
,
()
{
testContext
.
putIfAbsent
(
IOSSimulatorUtils
,
()
{
MockIOSSimulatorUtils
mock
=
new
MockIOSSimulatorUtils
();
MockIOSSimulatorUtils
mock
=
new
MockIOSSimulatorUtils
();
when
(
mock
.
getAttachedDevices
()).
thenReturn
(<
IOSSimulator
>[]);
when
(
mock
.
getAttachedDevices
()).
thenReturn
(<
IOSSimulator
>[]);
...
...
packages/flutter_tools/test/src/ios/ios_workflow_test.dart
View file @
5d2a460f
...
@@ -13,9 +13,9 @@ import '../context.dart';
...
@@ -13,9 +13,9 @@ import '../context.dart';
void
main
(
)
{
void
main
(
)
{
group
(
'iOS Workflow validation'
,
()
{
group
(
'iOS Workflow validation'
,
()
{
MockX
C
ode
xcode
;
MockX
c
ode
xcode
;
setUp
(()
{
setUp
(()
{
xcode
=
new
MockX
C
ode
();
xcode
=
new
MockX
c
ode
();
});
});
testUsingContext
(
'Emit missing status when nothing is installed'
,
()
async
{
testUsingContext
(
'Emit missing status when nothing is installed'
,
()
async
{
...
@@ -25,14 +25,14 @@ void main() {
...
@@ -25,14 +25,14 @@ void main() {
..
hasIosDeploy
=
false
;
..
hasIosDeploy
=
false
;
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
missing
);
expect
(
result
.
type
,
ValidationType
.
missing
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Emits partial status when Xcode is not installed'
,
()
async
{
testUsingContext
(
'Emits partial status when Xcode is not installed'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
false
);
when
(
xcode
.
isInstalled
).
thenReturn
(
false
);
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
partial
);
expect
(
result
.
type
,
ValidationType
.
partial
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Emits partial status when Xcode version too low'
,
()
async
{
testUsingContext
(
'Emits partial status when Xcode version too low'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
...
@@ -43,7 +43,7 @@ void main() {
...
@@ -43,7 +43,7 @@ void main() {
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
partial
);
expect
(
result
.
type
,
ValidationType
.
partial
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Emits partial status when Xcode EULA not signed'
,
()
async
{
testUsingContext
(
'Emits partial status when Xcode EULA not signed'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
...
@@ -54,7 +54,7 @@ void main() {
...
@@ -54,7 +54,7 @@ void main() {
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
IOSWorkflowTestTarget
workflow
=
new
IOSWorkflowTestTarget
();
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
partial
);
expect
(
result
.
type
,
ValidationType
.
partial
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Emits partial status when homebrew not installed'
,
()
async
{
testUsingContext
(
'Emits partial status when homebrew not installed'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
...
@@ -66,7 +66,7 @@ void main() {
...
@@ -66,7 +66,7 @@ void main() {
..
hasHomebrew
=
false
;
..
hasHomebrew
=
false
;
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
partial
);
expect
(
result
.
type
,
ValidationType
.
partial
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Emits partial status when ios-deploy is not installed'
,
()
async
{
testUsingContext
(
'Emits partial status when ios-deploy is not installed'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
...
@@ -78,7 +78,7 @@ void main() {
...
@@ -78,7 +78,7 @@ void main() {
..
hasIosDeploy
=
false
;
..
hasIosDeploy
=
false
;
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
partial
);
expect
(
result
.
type
,
ValidationType
.
partial
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Emits partial status when ios-deploy version is too low'
,
()
async
{
testUsingContext
(
'Emits partial status when ios-deploy version is too low'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
...
@@ -90,7 +90,7 @@ void main() {
...
@@ -90,7 +90,7 @@ void main() {
..
iosDeployVersionText
=
'1.8.0'
;
..
iosDeployVersionText
=
'1.8.0'
;
ValidationResult
result
=
await
workflow
.
validate
();
ValidationResult
result
=
await
workflow
.
validate
();
expect
(
result
.
type
,
ValidationType
.
partial
);
expect
(
result
.
type
,
ValidationType
.
partial
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
testUsingContext
(
'Succeeds when all checks pass'
,
()
async
{
testUsingContext
(
'Succeeds when all checks pass'
,
()
async
{
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
when
(
xcode
.
isInstalled
).
thenReturn
(
true
);
...
@@ -100,11 +100,11 @@ void main() {
...
@@ -100,11 +100,11 @@ void main() {
when
(
xcode
.
eulaSigned
).
thenReturn
(
true
);
when
(
xcode
.
eulaSigned
).
thenReturn
(
true
);
ValidationResult
result
=
await
new
IOSWorkflowTestTarget
().
validate
();
ValidationResult
result
=
await
new
IOSWorkflowTestTarget
().
validate
();
expect
(
result
.
type
,
ValidationType
.
installed
);
expect
(
result
.
type
,
ValidationType
.
installed
);
},
overrides:
<
Type
,
Generator
>{
X
C
ode:
()
=>
xcode
});
},
overrides:
<
Type
,
Generator
>{
X
c
ode:
()
=>
xcode
});
});
});
}
}
class
MockX
Code
extends
Mock
implements
XC
ode
{}
class
MockX
code
extends
Mock
implements
Xc
ode
{}
class
IOSWorkflowTestTarget
extends
IOSWorkflow
{
class
IOSWorkflowTestTarget
extends
IOSWorkflow
{
@override
@override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment