~ubuntu-branches/debian/experimental/subversion/experimental

« back to all changes in this revision

Viewing changes to subversion/bindings/javahl/native/ReposNotifyCallback.cpp

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2015-07-16 19:39:54 UTC
  • mfrom: (0.1.13)
  • Revision ID: package-import@ubuntu.com-20150716193954-6ueu2w62h4h556xh
Tags: 1.9.0~rc3-1
* New upstream pre-release.
* Point the Vcs-* URLs at the right directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  static jmethodID mid = 0;
70
70
  if (mid == 0)
71
71
    {
72
 
      jclass clazz = env->FindClass(JAVA_PACKAGE"/callback/ReposNotifyCallback");
 
72
      jclass clazz = env->FindClass(JAVAHL_CLASS("/callback/ReposNotifyCallback"));
73
73
      if (JNIUtil::isJavaExceptionThrown())
74
74
        return;
75
75
 
76
76
      mid = env->GetMethodID(clazz, "onNotify",
77
 
                             "(L"JAVA_PACKAGE"/ReposNotifyInformation;)V");
 
77
                             "(" JAVAHL_ARG("/ReposNotifyInformation;") ")V");
78
78
      if (JNIUtil::isJavaExceptionThrown() || mid == 0)
79
79
        return;
80
80