Merge branch 'master' into stable-6.7

* master:
  CommitGraphWriter: throw exception on unknown chunk

Change-Id: Iaa0c563917c4195fccd57f5e6839a37008c9b808
This commit is contained in:
Matthias Sohn 2023-09-02 09:40:19 +02:00
commit 96934c9a80
1 changed files with 3 additions and 0 deletions

View File

@ -222,6 +222,9 @@ private void writeChunks(ProgressMonitor monitor,
}
chunk.data.get().writeTo(out);
break;
default:
throw new IllegalStateException(
"Don't know how to write chunk " + chunkId); //$NON-NLS-1$
}
}
}