Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Fix for #2498 #2504

Merged
merged 6 commits into from
Jul 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update DalvikStatsCache.java
Typo fix
  • Loading branch information
surapuramakhil authored Jul 23, 2020
commit 1e5b5dd4997943a9294b64f88cdc549a6eac0ab6
2 changes: 1 addition & 1 deletion src/com/facebook/buck/android/dalvik/DalvikStatsCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DalvikStatsCache {

DalvikStatsTool.Stats getStats(FileLike entry) {
String name = entry.getRelativePath();
if (!name.endsWith(".class") || name.endswith("module-info.class")) {
if (!name.endsWith(".class") || name.endsWith("module-info.class")) {
// Probably something like a pom.properties file in a JAR: this does not contribute
// to the linear alloc size, so return zero.
return DalvikStatsTool.Stats.ZERO;
Expand Down