Skip to content

Commit 637be4b

Browse files
j-bahrfacebook-github-bot
authored andcommitted
Update google-java-format to 1.23.0
Reviewed By: hick209 Differential Revision: D60787993 fbshipit-source-id: dbadc5184c0a7cccd967173e21602657013ddac7
1 parent defe02d commit 637be4b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

animated-gif-lite/src/main/java/com/facebook/animated/giflite/GifDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private static AnimatedDrawableFrameInfo.DisposalMethod translateFrameDisposal(i
9898
case 3: // restore to previous
9999
return AnimatedDrawableFrameInfo.DisposalMethod.DISPOSE_TO_PREVIOUS;
100100
case 1: // do not dispose
101-
// fallthrough
101+
// fallthrough
102102
default: // unspecified
103103
return AnimatedDrawableFrameInfo.DisposalMethod.DISPOSE_DO_NOT;
104104
}

drawee-backends/drawee-pipeline/src/main/java/com/facebook/drawee/backends/pipeline/info/ImageOriginUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static String toString(@ImageOrigin int imageOrigin) {
4242
case ImageOrigin.LOCAL:
4343
return "local";
4444
case ImageOrigin.UNKNOWN:
45-
// fall through
45+
// fall through
4646
default:
4747
return "unknown";
4848
}

imagepipeline/src/main/java/com/facebook/imagepipeline/memory/PoolFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public BitmapPool getBitmapPool() {
7676
mConfig.isIgnoreBitmapPoolHardCap());
7777
break;
7878
case BitmapPoolType.LEGACY:
79-
// fall through
79+
// fall through
8080
default:
8181
if (Build.VERSION.SDK_INT >= 21) {
8282
mBitmapPool =

samples/showcase/src/main/java/com/facebook/fresco/samples/showcase/drawee/transition/ImageDetailsActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected void onCreate(Bundle savedInstanceState) {
6767
@Override
6868
public boolean onOptionsItemSelected(MenuItem item) {
6969
switch (item.getItemId()) {
70-
// Respond to the action bar's Up/Home button
70+
// Respond to the action bar's Up/Home button
7171
case android.R.id.home:
7272
supportFinishAfterTransition();
7373
return true;

ui-core/src/main/java/com/facebook/drawee/drawable/ScalingUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public static ScaleType convertFromImageViewScaleType(ImageView.ScaleType scaleT
141141
return ScaleType.FIT_END;
142142
case FIT_XY:
143143
return ScaleType.FIT_XY;
144-
// Matrix is not supported
144+
// Matrix is not supported
145145
case MATRIX:
146146
default:
147147
return null;

0 commit comments

Comments
 (0)