• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión2631 (tree)
Tiempo2024-02-03 23:50:52
Autort_nakayama1971

Log Message

(empty log message)

Cambiar Resumen

Diferencia incremental

--- trunk/framework/pjMw/src/main/java/common/db/dao/hibernate/NoCloseSession.java (revision 2630)
+++ trunk/framework/pjMw/src/main/java/common/db/dao/hibernate/NoCloseSession.java (revision 2631)
@@ -235,10 +235,13 @@
235235
236236 /**
237237 * {@inheritDoc}
238+ *
239+ * @deprecated deprecated method
238240 */
241+ @Deprecated(since = "6.3")
239242 @Override
240243 public SelectionQuery<?> createSelectionQuery(final String hqlString) {
241- return this.session.createSelectionQuery(hqlString);
244+ throw new UnsupportedOperationException();
242245 }
243246
244247 /**
@@ -299,10 +302,13 @@
299302
300303 /**
301304 * {@inheritDoc}
305+ *
306+ * @deprecated deprecated method
302307 */
308+ @Deprecated(since = "6.3")
303309 @Override
304310 public SelectionQuery<?> createNamedSelectionQuery(final String name) {
305- return this.session.createNamedSelectionQuery(name);
311+ throw new UnsupportedOperationException();
306312 }
307313
308314 /**