diff options
author | Nick Pelly <npelly@google.com> | 2009-06-30 19:38:30 -0700 |
---|---|---|
committer | Nick Pelly <npelly@google.com> | 2009-06-30 19:48:16 -0700 |
commit | 41557e18fa3fc5791a5a1c7f0051ae3385608bc4 (patch) | |
tree | 5d2ebfb8b00c3d37f7863746a43346e2de7fe354 /obex/javax/obex/ClientOperation.java | |
parent | 2e0da96e757a977154063f980d3f4e1abd41cf09 (diff) |
Obex library cleanup, second pass.
o Use mMemberField variable naming as per style guide
o ClientSession.trans is only used in the ctor, doesn't need to be a member
o Rename connectionOpen to mOpen and isConnected to mObexConnected to reduce
confusion
o Refactor duplicated code into helper functions (setRequestActive())
o Fix whitespace around comment blocks
o Change unnecessary public scope's to package private (eg setRequestInactive())
o Remove a redundant factory method ClientSession.createHeaderSet()
o Rename OPTIMIZATION to TODO to match Android style
o Rename java.io.IOException to IOException
o Be consistent with variable naming - use header not headers
Diffstat (limited to 'obex/javax/obex/ClientOperation.java')
-rw-r--r-- | obex/javax/obex/ClientOperation.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/obex/javax/obex/ClientOperation.java b/obex/javax/obex/ClientOperation.java index 1bd13677dcc9..5bc302aaaad4 100644 --- a/obex/javax/obex/ClientOperation.java +++ b/obex/javax/obex/ClientOperation.java @@ -347,7 +347,7 @@ public final class ClientOperation implements Operation, BaseStream { isClosed = true; inputStreamOpened = false; outputStreamOpened = false; - parent.setInactive(); + parent.setRequestInactive(); } /** |