reader = applyReprojectionDecorator(reader, localQuery, request);
Transaction transaction = getTransaction();
if (!Transaction.AUTO_COMMIT.equals(transaction)) {
ContentEntry entry = getEntry();
State state = transaction.getState(entry);
WFSLocalTransactionState wfsState = (WFSLocalTransactionState) state;
if (wfsState != null) {
WFSDiff diff = wfsState.getDiff();
reader = new DiffFeatureReader<SimpleFeatureType, SimpleFeature>(reader, diff, localQuery.getFilter());
}