Skip to content

Commit 4ce5645

Browse files
committed
oops
1 parent ab0b4e0 commit 4ce5645

File tree

1 file changed

+4
-3
lines changed
  • Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/data

1 file changed

+4
-3
lines changed

Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/data/CategoryDB.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,8 @@ private class ConflictMap extends LazyLoadingCachingMap<String, Map<String, Data
657657

658658
/**
659659
* Creates a map of all data types whose name has a .conflict suffix where the key
660-
* is the base name and {@link LazyLoadingCachingMap} the value is a map of actual name to data type. This mapping is
660+
* is the base name and {@link LazyLoadingCachingMap} the value is a map of actual name
661+
* to data type. This mapping is
661662
* maintained as a lazy cache map. This is only called by the super class when the
662663
* cached needs to be populated and we are depending on it to acquire the necessary
663664
* database lock. (See {@link LazyLoadingCachingMap#loadMap()}
@@ -671,8 +672,8 @@ protected Map<String, Map<String, DataType>> loadMap() {
671672
String dataTypeName = dataType.getName();
672673
if (isConflictName(dataTypeName)) {
673674
String baseName = getBaseName(dataTypeName);
674-
Map<String, DataType> innerMap = map.get(baseName);
675-
map.computeIfAbsent(baseName, b -> new HashMap<>());
675+
Map<String, DataType> innerMap =
676+
map.computeIfAbsent(baseName, b -> new HashMap<>());
676677
innerMap.put(dataTypeName, dataType);
677678
}
678679
}

0 commit comments

Comments
 (0)