소스 검색

Apply suggestions from code review

Co-authored-by: Cody Robibero <cody@robibe.ro>
Odd Stråbø 4 년 전
부모
커밋
afff226514
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      MediaBrowser.Model/Drawing/DrawingUtils.cs

+ 4 - 4
MediaBrowser.Model/Drawing/DrawingUtils.cs

@@ -87,8 +87,8 @@ namespace MediaBrowser.Model.Drawing
                 fillHeight = 1;
                 fillHeight = 1;
             }
             }
 
 
-            double widthRatio = (double)size.Width / (double)fillWidth;
-            double heightRatio = (double)size.Height / (double)fillHeight;
+            double widthRatio = size.Width / (double)fillWidth;
+            double heightRatio = size.Height / (double)fillHeight;
             double scaleRatio = Math.Min(widthRatio, heightRatio);
             double scaleRatio = Math.Min(widthRatio, heightRatio);
 
 
             // Clamp to current size.
             // Clamp to current size.
@@ -97,8 +97,8 @@ namespace MediaBrowser.Model.Drawing
                 return size;
                 return size;
             }
             }
 
 
-            int newWidth = Convert.ToInt32(Math.Ceiling((double)size.Width / scaleRatio));
-            int newHeight = Convert.ToInt32(Math.Ceiling((double)size.Height / scaleRatio));
+            int newWidth = Convert.ToInt32(Math.Ceiling(size.Width / scaleRatio));
+            int newHeight = Convert.ToInt32(Math.Ceiling(size.Height / scaleRatio));
 
 
             return new ImageDimensions(newWidth, newHeight);
             return new ImageDimensions(newWidth, newHeight);
         }
         }