From f1d62ace67a1543d57eb8a83aa8a715e62841af8 Mon Sep 17 00:00:00 2001 From: mdb Date: Thu, 1 Nov 2001 02:08:17 +0000 Subject: [PATCH] Made Operation public because otherwise I can't do something like this: public FooRepository extends SimpleRepository implements SimpleRepository.Operation { } which seems wacky to me but I can see how we may not have entered the protected namespace of the extended class while we're processing our interface implementation declarations. Seems a bit like a bug though. git-svn-id: https://samskivert.googlecode.com/svn/trunk@408 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../samskivert/src/java/com/samskivert/jdbc/Repository.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/jdbc/Repository.java b/projects/samskivert/src/java/com/samskivert/jdbc/Repository.java index ec3f18fe..a614aec7 100644 --- a/projects/samskivert/src/java/com/samskivert/jdbc/Repository.java +++ b/projects/samskivert/src/java/com/samskivert/jdbc/Repository.java @@ -1,5 +1,5 @@ // -// $Id: Repository.java,v 1.11 2001/09/21 03:01:46 mdb Exp $ +// $Id: Repository.java,v 1.12 2001/11/01 02:08:17 mdb Exp $ // // samskivert library - useful routines for java programs // Copyright (C) 2001 Michael Bayne @@ -87,7 +87,7 @@ public class Repository * as for it to automatically retry an operation if the connection * failed for some transient reason. */ - protected interface Operation + public interface Operation { /** * Invokes code that performs one or more database operations, all