Skip to content

Commit 3f765c4

Browse files
Trivial additional clean-up.
Just to get rid of the warning sign (at least with my current settings...).
1 parent a0d984e commit 3f765c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/NHibernate/Impl/StatelessSessionImpl.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -851,14 +851,14 @@ public override int ExecuteUpdate(IQueryExpression queryExpression, QueryParamet
851851

852852
public override FutureCriteriaBatch FutureCriteriaBatch
853853
{
854-
get { throw new System.NotSupportedException("future queries are not supported for stateless session"); }
855-
protected internal set { throw new System.NotSupportedException("future queries are not supported for stateless session"); }
854+
get { throw new NotSupportedException("future queries are not supported for stateless session"); }
855+
protected internal set { throw new NotSupportedException("future queries are not supported for stateless session"); }
856856
}
857857

858858
public override FutureQueryBatch FutureQueryBatch
859859
{
860-
get { throw new System.NotSupportedException("future queries are not supported for stateless session"); }
861-
protected internal set { throw new System.NotSupportedException("future queries are not supported for stateless session"); }
860+
get { throw new NotSupportedException("future queries are not supported for stateless session"); }
861+
protected internal set { throw new NotSupportedException("future queries are not supported for stateless session"); }
862862
}
863863

864864
public override IEntityPersister GetEntityPersister(string entityName, object obj)

0 commit comments

Comments
 (0)