Skip to content

Commit

Permalink
Documentation better the fixed bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
groboclown committed Apr 27, 2015
1 parent 3132e5f commit df75ea9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

### Details

* Added support for IntelliJ on JDK 1.6. (#?)
* Added support for IntelliJ on JDK 1.6. (#28)
* Compiled under JDK 1.6, and removed JDK 1.7-specific API calls.
* Added job support to check-ins. (#25 & #26)
* Experimental: the list of acceptable job status values are pulled
Expand All @@ -27,9 +27,8 @@
* Submitting a changelist which causes an error incorrectly reports the submit as
successful. (#31)
* Files would move incorrectly from the correct changelist into the default
changelist. (#?)


changelist. (#22)



## ::v0.4.3::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,13 @@ public Set<Client> getClients() {

@NotNull
public List<FilePath> getCrossSourceFilePathsFor(@NotNull Client client) {
// FIXME same-server, different client is not being correctly
// picked up here. A cross-client move shows the destination
// as correctly integrated, and deletes the source locally,
// but p4 is not told of the source deletion. Sometimes it works?
// Weird.


List<FilePath> ret = new ArrayList<FilePath>(crossClient.size());
for (SplitClientFileEntry entry : crossClient) {
if (client.equals(entry.srcClient)) {
Expand Down

0 comments on commit df75ea9

Please sign in to comment.