Fix orientation for front-facing cameras using CaptureModule

Change-Id: Ibf4a9c7601fbc3e42ec03d18c54a23b604d42249
diff --git a/src/com/android/camera/CaptureModule.java b/src/com/android/camera/CaptureModule.java
index 46b5b0a..80f0f0a 100644
--- a/src/com/android/camera/CaptureModule.java
+++ b/src/com/android/camera/CaptureModule.java
@@ -1351,11 +1351,6 @@
         // Important: Camera2 buffers are already rotated to the natural
         // orientation of the device (at least for the back-camera).
 
-        // TODO: Remove this hack for the front camera as soon as b/16637957 is
-        // fixed.
-        if (mCameraFacing == Facing.FRONT) {
-            deviceOrientationDegrees += 180;
-        }
         return (360 - deviceOrientationDegrees) % 360;
     }