[Camera] Remove feature check (#2107)
authorhsgwon <haesu.gwon@samsung.com>
Tue, 20 Oct 2020 09:50:33 +0000 (18:50 +0900)
committerGitHub <noreply@github.com>
Tue, 20 Oct 2020 09:50:33 +0000 (18:50 +0900)
src/Tizen.Multimedia.Camera/Camera/Camera.cs

index f2d7381..bfb39a5 100644 (file)
@@ -56,11 +56,6 @@ namespace Tizen.Multimedia
         /// <feature> http://tizen.org/feature/camera </feature>
         public Camera(CameraDevice device)
         {
-            if (!Features.IsSupported(CameraFeatures.Camera))
-            {
-                throw new NotSupportedException("Camera feature is not supported.");
-            }
-
             Native.Create(device, out _handle).ThrowIfFailed("Failed to create camera instance");
 
             Capabilities = new CameraCapabilities(this);