Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cad8f5e4fe72
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 17d611e4a8df
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 4, 2015

  1. minor typo

    MSNexploder committed Aug 4, 2015
    Copy the full SHA
    e6890c6 View commit details

Commits on Aug 5, 2015

  1. Merge pull request #3223 from MSNexploder/analyzer_typo

    minor typo
    kares committed Aug 5, 2015
    Copy the full SHA
    17d611e View commit details
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@
*
* @author enebo
*/
public class IRWriterAnalzer implements IRWriterEncoder {
public class IRWriterAnalyzer implements IRWriterEncoder {
private int currentOffsetId = 0;
private final Map<String, Integer> offsetIds = new HashMap<String, Integer>();

Original file line number Diff line number Diff line change
@@ -37,14 +37,14 @@ public class IRWriterStream implements IRWriterEncoder, IRPersistenceValues {
// FIXME: Allocate direct and use one per thread?
private final ByteBuffer buf = ByteBuffer.allocate(TWO_MEGS);
private final OutputStream stream;
private final IRWriterAnalzer analyzer;
private final IRWriterAnalyzer analyzer;

int headersOffset = -1;
int poolOffset = -1;

public IRWriterStream(OutputStream stream) {
this.stream = stream;
this.analyzer = new IRWriterAnalzer();
this.analyzer = new IRWriterAnalyzer();
}

public IRWriterStream(File file) throws FileNotFoundException {