Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jgit-dev] Re: synchronize patches

Dariusz Luksza <dariusz.luksza@xxxxxxxxx> wrote:
> 
> OK, and what about FileTreeEntry class? It is also deprecated?

Yes.

> If yes,
> then how can I obtain file content from RevBlob?

Just open the object from the repository:

  ObjectLoader ldr = repository.openObject(theBlob);
 
-- 
Shawn.


Back to the top