Skip to content

Commit

Permalink
Merge branch 'master' into release-1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cgdecker committed Jun 10, 2014
2 parents fd9fb8b + 4739aee commit 7f7b708
Show file tree
Hide file tree
Showing 103 changed files with 203 additions and 203 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ abstract file system APIs.
Getting started
---------------

The latest release is [1.0-rc1](https://github.com/google/jimfs/releases/tag/v1.0-rc1).
The latest release is [1.0-rc2](https://github.com/google/jimfs/releases/tag/v1.0-rc2).

It is available in Maven Central as
[com.google.jimfs:jimfs:1.0-rc1](http://search.maven.org/#artifactdetails%7Ccom.google.jimfs%7Cjimfs%7C1.0-rc1%7Cjar):
[com.google.jimfs:jimfs:1.0-rc2](http://search.maven.org/#artifactdetails%7Ccom.google.jimfs%7Cjimfs%7C1.0-rc2%7Cjar):

```xml
<dependency>
<groupId>com.google.jimfs</groupId>
<artifactId>jimfs</artifactId>
<version>1.0-rc1</version>
<version>1.0-rc2</version>
</dependency>
```

Expand All @@ -28,8 +28,8 @@ The simplest way to use Jimfs is to just get a new `FileSystem` instance from th
start using it:

```java
import com.google.jimfs.Configuration;
import com.google.jimfs.Jimfs;
import com.google.common.jimfs.Configuration;
import com.google.common.jimfs.Jimfs;
...

// For a simple file system with Unix-style paths and behavior:
Expand Down
2 changes: 1 addition & 1 deletion jimfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>com.google.jimfs.*</Export-Package>
<Export-Package>com.google.common.jimfs.*</Export-Package>
<Include-Resource>
META-INF/services=target/classes/META-INF/services
</Include-Resource>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

/**
* Options for how to handle copying of file attributes when copying a file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.jimfs.Feature.FILE_CHANNEL;
import static com.google.jimfs.Feature.LINKS;
import static com.google.jimfs.Feature.SECURE_DIRECTORY_STREAM;
import static com.google.jimfs.Feature.SYMBOLIC_LINKS;
import static com.google.jimfs.PathNormalization.CASE_FOLD_ASCII;
import static com.google.jimfs.PathNormalization.NFC;
import static com.google.jimfs.PathNormalization.NFD;
import static com.google.common.jimfs.Feature.FILE_CHANNEL;
import static com.google.common.jimfs.Feature.LINKS;
import static com.google.common.jimfs.Feature.SECURE_DIRECTORY_STREAM;
import static com.google.common.jimfs.Feature.SYMBOLIC_LINKS;
import static com.google.common.jimfs.PathNormalization.CASE_FOLD_ASCII;
import static com.google.common.jimfs.PathNormalization.NFC;
import static com.google.common.jimfs.PathNormalization.NFD;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.AbstractIterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import java.nio.channels.AsynchronousFileChannel;
import java.nio.channels.FileChannel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;
import static java.nio.file.StandardCopyOption.COPY_ATTRIBUTES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkArgument;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import java.util.Arrays;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkArgument;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkPositionIndexes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.jimfs;
package com.google.common.jimfs;

import static com.google.common.base.Preconditions.checkNotNull;

Expand Down
Loading

0 comments on commit 7f7b708

Please sign in to comment.