Changed the imports to reflect the new package structure.
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/c8f7562b Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/c8f7562b Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/c8f7562b Branch: refs/heads/rajith-codec Commit: c8f7562bd88f29c30336e751980c6504cda0c153 Parents: ef66a55 Author: Rajith Attapattu <[email protected]> Authored: Wed May 13 13:07:59 2015 -0400 Committer: Rajith Attapattu <[email protected]> Committed: Wed May 13 13:07:59 2015 -0400 ---------------------------------------------------------------------- .../qpid/proton/codec2/DiscriptorRegistry.java | 34 ++++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/c8f7562b/proton-j/src/main/java/org/apache/qpid/proton/codec2/DiscriptorRegistry.java ---------------------------------------------------------------------- diff --git a/proton-j/src/main/java/org/apache/qpid/proton/codec2/DiscriptorRegistry.java b/proton-j/src/main/java/org/apache/qpid/proton/codec2/DiscriptorRegistry.java index 9dd4c98..697a89a 100644 --- a/proton-j/src/main/java/org/apache/qpid/proton/codec2/DiscriptorRegistry.java +++ b/proton-j/src/main/java/org/apache/qpid/proton/codec2/DiscriptorRegistry.java @@ -38,23 +38,23 @@ import org.apache.qpid.proton.message2.Properties; import org.apache.qpid.proton.message2.Received; import org.apache.qpid.proton.message2.Rejected; import org.apache.qpid.proton.message2.Released; -import org.apache.qpid.proton.security.SaslChallenge; -import org.apache.qpid.proton.security.SaslInit; -import org.apache.qpid.proton.security.SaslMechanisms; -import org.apache.qpid.proton.security.SaslOutcome; -import org.apache.qpid.proton.security.SaslResponse; -import org.apache.qpid.proton.transport.Attach; -import org.apache.qpid.proton.transport.Begin; -import org.apache.qpid.proton.transport.Close; -import org.apache.qpid.proton.transport.Detach; -import org.apache.qpid.proton.transport.Disposition; -import org.apache.qpid.proton.transport.End; -import org.apache.qpid.proton.transport.ErrorCondition; -import org.apache.qpid.proton.transport.Flow; -import org.apache.qpid.proton.transport.Open; -import org.apache.qpid.proton.transport.Source; -import org.apache.qpid.proton.transport.Target; -import org.apache.qpid.proton.transport.Transfer; +import org.apache.qpid.proton.security2.SaslChallenge; +import org.apache.qpid.proton.security2.SaslInit; +import org.apache.qpid.proton.security2.SaslMechanisms; +import org.apache.qpid.proton.security2.SaslOutcome; +import org.apache.qpid.proton.security2.SaslResponse; +import org.apache.qpid.proton.transport2.Attach; +import org.apache.qpid.proton.transport2.Begin; +import org.apache.qpid.proton.transport2.Close; +import org.apache.qpid.proton.transport2.Detach; +import org.apache.qpid.proton.transport2.Disposition; +import org.apache.qpid.proton.transport2.End; +import org.apache.qpid.proton.transport2.ErrorCondition; +import org.apache.qpid.proton.transport2.Flow; +import org.apache.qpid.proton.transport2.Open; +import org.apache.qpid.proton.transport2.Source; +import org.apache.qpid.proton.transport2.Target; +import org.apache.qpid.proton.transport2.Transfer; public class DiscriptorRegistry { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
