Messaging: Fix modifiers

We either have too few or too many

Change-Id: I09a9a38b859c68526fcbcdbc7862afe1d693f6c0
This commit is contained in:
Michael W
2024-12-08 21:40:43 +01:00
parent 37d6d70835
commit 21cb2b6289
78 changed files with 528 additions and 464 deletions

View File

@@ -1,5 +1,6 @@
/*
* Copyright (C) 2012 The Android Open Source Project
* Copyright (C) 2024 The LineageOS Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -877,8 +878,8 @@ public class ExifParser {
}
private static class ImageEvent {
int stripIndex;
int type;
final int stripIndex;
final int type;
ImageEvent(int type) {
this.stripIndex = 0;
@@ -892,8 +893,8 @@ public class ExifParser {
}
private static class IfdEvent {
int ifd;
boolean isRequested;
final int ifd;
final boolean isRequested;
IfdEvent(int ifd, boolean isInterestedIfd) {
this.ifd = ifd;
@@ -902,8 +903,8 @@ public class ExifParser {
}
private static class ExifTagEvent {
ExifTag tag;
boolean isRequested;
final ExifTag tag;
final boolean isRequested;
ExifTagEvent(ExifTag tag, boolean isRequireByUser) {
this.tag = tag;