Skip to content

Commit

Permalink
Final touch-ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Ostrzyciel committed Dec 19, 2024
1 parent 7a70ffe commit 5f544f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ class TranscoderLookup {
private int lastInputGetId = 0;
private int lastOutputGetId = 0;

/**
* Create a new TranscoderLookup.
* @param isNameLookup Whether this lookup is for IRI names.
* @param outputSize The size of the output lookup.
*/
TranscoderLookup(boolean isNameLookup, int outputSize) {
this.isNameLookup = isNameLookup;
this.outputSize = outputSize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import eu.ostrzyciel.jelly.core.proto.v1.*
import scala.annotation.switch
import scala.collection.mutable.ArrayBuffer

// Note: the caller is responsible for setting a physical stream type in the output!

/**
* Fast implementation of the ProtoTranscoder interface.
*
Expand Down

0 comments on commit 5f544f6

Please sign in to comment.