コメント追加

This commit is contained in:
r-ca 2024-01-24 18:09:56 +09:00
parent 93cef07ce5
commit d778840484
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -221,6 +221,7 @@ public class LacertaVcsImpl implements LacertaVcs {
final ArrayList<String>[] fileNameList = new ArrayList[]{new ArrayList<>()};
vcsLogEntities.forEach(vcsLogEntity -> {
logger.debug(TAG, "getDocumentPagePathListRev: processing " + vcsLogEntity.id + "(Type: " + vcsLogEntity.actionType + ")");
if (vcsLogEntity.actionType.equals(ActionType.INSERT_PAGE.getValue())){
InsertPage insertPage = (InsertPage) JsonUtils.fromJson(vcsLogEntity.action, ActionType.INSERT_PAGE);
fileNameList[0].add(insertPage.getIndex(), insertPage.getFileName());